Part 11: KE enrichment score analysis and benchmarking for dataset: GSE109565
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:GSE109565. This notebook is subdivided into eight 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: PCB concentration 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 and 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:PCB concentration 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 and 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: PCB concentration 3
- Section 7.1: Calculation of n variable
- Section 7.2: Calculation of variable B and variable b
- Section 7.3: Calculation of enrichment score and 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: 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
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'})
Section 5. Comparison 1: PCB concentration 1 (1uM)
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.
C1_DEG= pd.read_csv('PCB concentration 1-GSE109565.top.table.tsv',sep='\t')
PCB1_DEG= C1_DEG[C1_DEG['padj'] < 0.05]
PCB1DEG = PCB1_DEG.copy()
PCB1DEG.rename(columns={PCB1DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
PCB1DEG['Entrez.Gene'] = PCB1DEG['Entrez.Gene'].astype(str)
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,PCB1DEG, on='Entrez.Gene')
mergeddataframeDEG= merged_dataframe_DEG.drop(['baseMean'], axis=1)
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['padj']
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': 12, 'https://identifiers.org/aop.events/875': 29, 'https://identifiers.org/aop.events/2007': 19, 'https://identifiers.org/aop.events/1495': 28, 'https://identifiers.org/aop.events/105': 8, 'https://identifiers.org/aop.events/1816': 8, 'https://identifiers.org/aop.events/1668 ': 19, 'https://identifiers.org/aop.events/244 ': 95, 'https://identifiers.org/aop.events/1814 ': 43, 'https://identifiers.org/aop.events/888': 2, 'https://identifiers.org/aop.events/1574': 2, 'https://identifiers.org/aop.events/41': 81, 'https://identifiers.org/aop.events/1270': 14, 'https://identifiers.org/aop.events/1086': 22, 'https://identifiers.org/aop.events/1487 ': 5, 'https://identifiers.org/aop.events/1539': 40, 'https://identifiers.org/aop.events/201': 8, 'https://identifiers.org/aop.events/457': 126, 'https://identifiers.org/aop.events/55': 44, 'https://identifiers.org/aop.events/188': 1, 'https://identifiers.org/aop.events/618': 39, 'https://identifiers.org/aop.events/389': 8, 'https://identifiers.org/aop.events/177': 24, 'https://identifiers.org/aop.events/2013': 10, 'https://identifiers.org/aop.events/2006': 38, 'https://identifiers.org/aop.events/1497': 80, 'https://identifiers.org/aop.events/870': 4, 'https://identifiers.org/aop.events/1669': 57, 'https://identifiers.org/aop.events/1115': 8, 'https://identifiers.org/aop.events/202': 40, 'https://identifiers.org/aop.events/1917': 52, 'https://identifiers.org/aop.events/1633': 160, 'https://identifiers.org/aop.events/1392': 24, 'https://identifiers.org/aop.events/1815': 10, 'https://identifiers.org/aop.events/386': 57, 'https://identifiers.org/aop.events/1944': 10, 'https://identifiers.org/aop.events/1582': 13, 'https://identifiers.org/aop.events/1896': 34, 'https://identifiers.org/aop.events/1172': 5, 'https://identifiers.org/aop.events/1496': 59, 'https://identifiers.org/aop.events/68': 20, 'https://identifiers.org/aop.events/1493': 118, 'https://identifiers.org/aop.events/265': 48, 'https://identifiers.org/aop.events/1817': 42, 'https://identifiers.org/aop.events/1819': 17, 'https://identifiers.org/aop.events/1750': 80, 'https://identifiers.org/aop.events/1901': 6, 'https://identifiers.org/aop.events/1848': 27, 'https://identifiers.org/aop.events/1365': 42, 'https://identifiers.org/aop.events/890': 8, 'https://identifiers.org/aop.events/1587': 7, 'https://identifiers.org/aop.events/1457': 8, 'https://identifiers.org/aop.events/1586': 7, 'https://identifiers.org/aop.events/149': 160, 'https://identifiers.org/aop.events/1575': 42, 'https://identifiers.org/aop.events/1579': 54, 'https://identifiers.org/aop.events/87': 14, 'https://identifiers.org/aop.events/249': 8, 'https://identifiers.org/aop.events/288': 21, 'https://identifiers.org/aop.events/209': 143, 'https://identifiers.org/aop.events/1498': 40, 'https://identifiers.org/aop.events/1500': 40, 'https://identifiers.org/aop.events/1488': 33, 'https://identifiers.org/aop.events/1494': 14, 'https://identifiers.org/aop.events/52': 37, 'https://identifiers.org/aop.events/381': 30, 'https://identifiers.org/aop.events/484': 139, 'https://identifiers.org/aop.events/388': 29, 'https://identifiers.org/aop.events/1262': 42, 'https://identifiers.org/aop.events/1945': 214, 'https://identifiers.org/aop.events/2009': 14, 'https://identifiers.org/aop.events/2012': 40, 'https://identifiers.org/aop.events/1770': 3, 'https://identifiers.org/aop.events/1818': 41, 'https://identifiers.org/aop.events/1752': 13, 'https://identifiers.org/aop.events/887': 5, 'https://identifiers.org/aop.events/1585': 5, 'https://identifiers.org/aop.events/214': 16, 'https://identifiers.org/aop.events/1271': 17, 'https://identifiers.org/aop.events/1087': 80, 'https://identifiers.org/aop.events/1538': 8, 'https://identifiers.org/aop.events/898': 42, 'https://identifiers.org/aop.events/195': 33, 'https://identifiers.org/aop.events/459': 19, 'https://identifiers.org/aop.events/341': 4, 'https://identifiers.org/aop.events/1670': 16, 'https://identifiers.org/aop.events/759': 10, 'https://identifiers.org/aop.events/1090': 107, 'https://identifiers.org/aop.events/344': 7, 'https://identifiers.org/aop.events/1841': 1, 'https://identifiers.org/aop.events/1820': 7, 'https://identifiers.org/aop.events/896': 4, 'https://identifiers.org/aop.events/1549': 20, 'https://identifiers.org/aop.events/357': 6, 'https://identifiers.org/aop.events/352': 58}
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_dataframe2= 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.
B=len(C1_DEG.index)
B
16316
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.
C1_DEG_filtered=C1_DEG[C1_DEG['padj'] < 0.05]
b=len(C1_DEG_filtered)
b
3124
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_dataframe2.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([16316 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([3124 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)
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/41') |(mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/1539')| (mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/457')|(mergeddataframe_final['KEID'] =='https://identifiers.org/aop.events/1917') |(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/68')|(mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/457')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1917')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/68')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1457')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/288')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/209')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/484')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/214')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1271')| (mergeddataframe_final['KEID']=='https://identifiers.org/aop.events/1090')]
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 |
... | ... | ... | ... |
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 |
3641 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/GSE109565_ORApathwaytable/Comparison 1-PCB concentration 1.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")
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1090: 4 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1271: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1457: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1539: 3 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1917: 5 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/209: 6 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/214: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/244: 7 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/288: 4 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/41: 7 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/457: 5 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/484: 4 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/68: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1090: 7 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1271: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1457: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1539: 5 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1917: 2 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/209: 10 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/214: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/244: 5 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/288: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/41: 6 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/457: 7 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/484: 9 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/68: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1090: 4 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1271: 3 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1457: 1 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1539: 1 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1917: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/209: 9 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/214: 3 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/244: 5 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/288: 4 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/41: 5 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/457: 33 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/484: 7 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/68: 0 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/1090: 2 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/1271: 5 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/1457: 1 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/1539: 0 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/1917: 1 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/209: 3 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/214: 0 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/244: 2 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/288: 0 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/41: 1 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/457: 3 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/484: 1 overlaps
Affected Pathways In Duchenne Muscular Dystrophy WP5356 x https://identifiers.org/aop.events/68: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/1090: 1 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/1271: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/1457: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/1539: 1 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/1917: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/209: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/214: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/244: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/288: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/41: 0 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/457: 2 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/484: 2 overlaps
Allograft Rejection WP2328 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1457: 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/1917: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/209: 5 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/214: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/244: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/288: 0 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: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/484: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/68: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1090: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1271: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1457: 0 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/1917: 6 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/209: 6 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/214: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/244: 6 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/288: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/41: 6 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/457: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/484: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/68: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1090: 8 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1271: 1 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1457: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1539: 1 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1917: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/209: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/214: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/244: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/288: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/41: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/457: 10 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/484: 9 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/68: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1090: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1271: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1457: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1539: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1917: 8 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/209: 10 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/214: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/244: 10 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/288: 5 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/41: 8 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/457: 2 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/484: 2 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/68: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1090: 3 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1271: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1457: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1539: 4 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1917: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/209: 2 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/214: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/244: 3 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/288: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/41: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/457: 2 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/484: 3 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/68: 0 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/1090: 5 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/1271: 3 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/1457: 0 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/1539: 3 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/1917: 1 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/209: 3 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/214: 0 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/244: 3 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/288: 0 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/41: 1 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/457: 3 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/484: 3 overlaps
BMP Signaling In Eyelid Development WP3927 x https://identifiers.org/aop.events/68: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1090: 9 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1271: 2 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1457: 1 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1539: 3 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1917: 1 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/209: 3 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/214: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/244: 6 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/288: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/41: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/457: 7 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/484: 8 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/68: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/1090: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/1271: 1 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/1457: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/1539: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/1917: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/209: 1 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/214: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/244: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/288: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/41: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/457: 1 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/484: 0 overlaps
Blood Clotting Cascade WP272 x https://identifiers.org/aop.events/68: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1090: 9 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1271: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1457: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1539: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1917: 1 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/209: 4 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/214: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/244: 5 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/288: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/41: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/457: 7 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/484: 8 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/68: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/1090: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/1271: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/1457: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/1539: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/1917: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/209: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/214: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/244: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/288: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/41: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/457: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/484: 0 overlaps
COVID 19 Thrombosis And Anticoagulation WP4927 x https://identifiers.org/aop.events/68: 0 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/1090: 0 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/1271: 0 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/1457: 0 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/1539: 3 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/1917: 1 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/209: 3 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/214: 0 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/244: 1 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/288: 0 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/41: 2 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/457: 2 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/484: 3 overlaps
Calcium Regulation In Cardiac Cells WP536 x https://identifiers.org/aop.events/68: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 35 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1271: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1457: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1539: 9 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1917: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 31 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/214: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 31 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/288: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/41: 16 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/457: 37 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/484: 34 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/68: 2 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1090: 4 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1271: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1457: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1539: 1 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/1917: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/209: 5 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/214: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/244: 11 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/288: 0 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/41: 3 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/457: 6 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/484: 6 overlaps
Cell Cycle WP179 x https://identifiers.org/aop.events/68: 0 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/1090: 2 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/1271: 1 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/1457: 2 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/1539: 1 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/1917: 1 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/209: 2 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/214: 0 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/244: 1 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/288: 0 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/41: 2 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/457: 3 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/484: 2 overlaps
Cell Lineage Map For Neuronal Differentiation WP5417 x https://identifiers.org/aop.events/68: 1 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/1090: 1 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/1271: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/1457: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/1539: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/1917: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/209: 1 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/214: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/244: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/288: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/41: 0 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/457: 1 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/484: 1 overlaps
Cells And Molecules Involved In Acute Inflammatory Response WP4493 x https://identifiers.org/aop.events/68: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1090: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1271: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1457: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1539: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1917: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/209: 5 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/214: 3 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/244: 1 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/288: 1 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/41: 3 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/457: 8 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/484: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/68: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1090: 4 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1271: 2 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1457: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1539: 2 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1917: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/209: 5 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/214: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/244: 3 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/288: 2 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/41: 2 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/457: 5 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/484: 3 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/68: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1090: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1271: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1457: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1539: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1917: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/209: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/214: 1 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/244: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/288: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/41: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/457: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/484: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/68: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1090: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1271: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1457: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1539: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1917: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/209: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/214: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/244: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/288: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/41: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/457: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/484: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/68: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/1090: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/1271: 1 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/1457: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/1539: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/1917: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/209: 1 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/214: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/244: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/288: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/41: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/457: 1 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/484: 0 overlaps
Complement And Coagulation Cascades WP558 x https://identifiers.org/aop.events/68: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1090: 2 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1271: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1457: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1539: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1917: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/209: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/214: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/244: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/288: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/41: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/457: 3 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/484: 3 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/68: 0 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/1090: 2 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/1271: 2 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/1457: 0 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/1539: 1 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/1917: 2 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/209: 4 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/214: 0 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/244: 2 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/288: 0 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/41: 2 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/457: 5 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/484: 6 overlaps
Complement System WP2806 x https://identifiers.org/aop.events/68: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1090: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1271: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1457: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1539: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1917: 9 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/209: 9 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/214: 3 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/244: 10 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/288: 11 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/41: 10 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/457: 3 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/484: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/68: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1090: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1271: 3 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1457: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1539: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1917: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/209: 2 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/214: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/244: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/288: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/41: 2 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/457: 4 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/484: 3 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/1457: 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/1917: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/209: 12 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/214: 0 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/244: 8 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/288: 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/457: 2 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/484: 4 overlaps
DNA IR Damage And Cellular Response Via ATR WP4016 x https://identifiers.org/aop.events/68: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/1090: 7 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/1457: 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/1917: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/209: 5 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/214: 0 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/244: 2 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/288: 0 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: 5 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/484: 5 overlaps
DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180 x https://identifiers.org/aop.events/68: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/1090: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/1271: 1 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/1457: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/1539: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/1917: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/209: 2 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/214: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/244: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/288: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/41: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/457: 1 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/484: 0 overlaps
Dengue 2 Interactions With Complement And Coagulation Cascades WP3896 x https://identifiers.org/aop.events/68: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1090: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1271: 2 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1457: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1539: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1917: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/209: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/214: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/244: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/288: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/41: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/457: 3 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/484: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/68: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1090: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1271: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1457: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1539: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1917: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/209: 2 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/214: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/244: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/288: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/41: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/457: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/484: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/68: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1090: 7 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1271: 2 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1457: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1539: 39 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/1917: 1 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/209: 3 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/214: 0 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/244: 7 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/288: 0 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: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/484: 6 overlaps
EGF EGFR Signaling WP437 x https://identifiers.org/aop.events/68: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1090: 13 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1271: 1 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1457: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1539: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1917: 4 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/209: 4 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/214: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/244: 10 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/288: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/41: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/457: 13 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/484: 17 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/68: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1090: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1271: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1457: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1539: 4 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1917: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/209: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/214: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/244: 2 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/288: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/41: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/457: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/484: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/68: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1090: 3 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1271: 1 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1457: 1 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1539: 1 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1917: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/209: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/214: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/244: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/288: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/41: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/457: 4 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/484: 1 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/68: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/1090: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/1271: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/1457: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/1539: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/1917: 1 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/209: 2 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/214: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/244: 1 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/288: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/41: 1 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/457: 1 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/484: 0 overlaps
Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720 x https://identifiers.org/aop.events/68: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/1090: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/1271: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/1457: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/1539: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/1917: 2 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/209: 3 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/214: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/244: 2 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/288: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/41: 2 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/457: 1 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/484: 0 overlaps
Eicosanoid Metabolism Via Cyclooxygenases COX WP4719 x https://identifiers.org/aop.events/68: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1090: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1271: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1457: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1539: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1917: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/209: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/214: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/244: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/288: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/41: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/457: 3 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/484: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/68: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1090: 20 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1271: 4 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1457: 4 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1539: 3 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1917: 1 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/209: 8 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/214: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/244: 10 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/288: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/41: 3 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/457: 9 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/484: 8 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/68: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1090: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1271: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1457: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1539: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1917: 4 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/209: 5 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/214: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/244: 4 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/288: 3 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/41: 4 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/457: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/484: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/68: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1090: 6 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1271: 5 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1457: 1 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1539: 2 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1917: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/209: 4 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/214: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/244: 6 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/288: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/41: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/457: 5 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/484: 5 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/68: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/1090: 1 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/1271: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/1457: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/1539: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/1917: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/209: 1 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/214: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/244: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/288: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/41: 0 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/457: 2 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/484: 3 overlaps
Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218 x https://identifiers.org/aop.events/68: 0 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/1090: 2 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/1271: 1 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/1457: 0 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/1539: 0 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/1917: 0 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/209: 1 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/214: 0 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/244: 2 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/288: 0 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/41: 1 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/457: 3 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/484: 3 overlaps
FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790 x https://identifiers.org/aop.events/68: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1090: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1271: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1457: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1539: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1917: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/209: 3 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/214: 2 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/244: 1 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/288: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/41: 2 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/457: 1 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/484: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/68: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1090: 1 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1271: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1457: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1539: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1917: 1 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/209: 3 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/214: 8 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/244: 1 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/288: 8 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/41: 8 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/457: 4 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/484: 2 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/68: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1090: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1271: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1457: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1539: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1917: 2 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/209: 3 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/214: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/244: 2 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/288: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/41: 2 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/457: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/484: 0 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/68: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1090: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1271: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1457: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1539: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1917: 5 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/209: 6 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/214: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/244: 6 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/288: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/41: 6 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/457: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/484: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/68: 1 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/1090: 2 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/1271: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/1457: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/1539: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/1917: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/209: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/214: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/244: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/288: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/41: 0 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/457: 3 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/484: 3 overlaps
Fibrin Complement Receptor 3 Signaling WP4136 x https://identifiers.org/aop.events/68: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1090: 1 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1271: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1457: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1539: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/1917: 3 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/209: 4 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/214: 1 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/244: 4 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/288: 2 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/41: 4 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/457: 0 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/484: 1 overlaps
Fluoropyrimidine Activity WP1601 x https://identifiers.org/aop.events/68: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1090: 33 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1271: 4 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/1539: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1917: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/209: 11 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/214: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/244: 12 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/288: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/41: 14 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/457: 70 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/484: 70 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/68: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1090: 26 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1271: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1457: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1539: 8 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1917: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/209: 6 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/214: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/244: 9 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/288: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/41: 3 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/457: 30 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/484: 34 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/68: 0 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/1090: 1 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/1271: 1 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/1457: 0 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/1539: 0 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/1917: 1 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/209: 4 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/214: 2 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/244: 4 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/288: 0 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/41: 4 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/457: 2 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/484: 1 overlaps
Folate Metabolism WP176 x https://identifiers.org/aop.events/68: 0 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/1090: 7 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/1271: 0 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/1457: 0 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/1539: 6 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/1917: 2 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/209: 8 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/214: 0 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/244: 3 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/288: 0 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/41: 5 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/457: 4 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/484: 6 overlaps
Fragile X Syndrome WP4549 x https://identifiers.org/aop.events/68: 2 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/1090: 1 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/1271: 1 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/1457: 0 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/1539: 3 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/1917: 1 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/209: 1 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/214: 0 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/244: 2 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/288: 0 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/41: 1 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/457: 2 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/484: 3 overlaps
G Protein Signaling WP35 x https://identifiers.org/aop.events/68: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1090: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1271: 1 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1457: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1539: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1917: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/209: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/214: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/244: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/288: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/41: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/457: 1 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/484: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/68: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1090: 2 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1271: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1457: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1539: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1917: 1 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/209: 3 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/214: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/244: 4 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/288: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/41: 2 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/457: 5 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/484: 5 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/1457: 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/1917: 0 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/209: 3 overlaps
Gastric Cancer Network 1 WP2361 x https://identifiers.org/aop.events/214: 0 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/288: 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/68: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1090: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1271: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1457: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1539: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1917: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/209: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/214: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/244: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/288: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/41: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/457: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/484: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/68: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1090: 13 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1271: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1457: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1539: 8 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/1917: 1 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/209: 6 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/214: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/244: 11 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/288: 0 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/41: 5 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/457: 12 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/484: 16 overlaps
Glioblastoma Signaling WP2261 x https://identifiers.org/aop.events/68: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1090: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1271: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1457: 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/1917: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/209: 2 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/214: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/244: 3 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/288: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/41: 1 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: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/68: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1090: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1271: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/1457: 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/1917: 1 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/214: 0 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/244: 1 overlaps
Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211 x https://identifiers.org/aop.events/288: 0 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/68: 3 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1090: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1271: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1457: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1539: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1917: 6 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/209: 6 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/214: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/244: 6 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/288: 4 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/41: 6 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/457: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/484: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/68: 1 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/1090: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/1271: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/1457: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/1539: 1 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/1917: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/209: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/214: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/244: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/288: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/41: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/457: 1 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/484: 0 overlaps
Glycerolipids And Glycerophospholipids WP4722 x https://identifiers.org/aop.events/68: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/1090: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/1271: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/1457: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/1539: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/1917: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/209: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/214: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/244: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/288: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/41: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/457: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/484: 0 overlaps
Glycosaminoglycan Synthesis In Fibroblasts WP5395 x https://identifiers.org/aop.events/68: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1090: 7 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1271: 3 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1457: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1539: 3 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1917: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/209: 5 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/214: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/244: 2 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/288: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/41: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/457: 5 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/484: 2 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/68: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1271: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1457: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1539: 3 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/209: 9 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/214: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/288: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/41: 8 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/457: 10 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/484: 11 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/68: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1090: 27 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1271: 2 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1457: 3 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1539: 2 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1917: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/209: 1 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/214: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/244: 1 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/288: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/41: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/457: 16 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/484: 15 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/68: 0 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/1090: 5 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/1271: 0 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/1457: 0 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/1539: 2 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/1917: 1 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/209: 3 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/214: 1 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/244: 3 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/288: 1 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/41: 2 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/457: 1 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/484: 5 overlaps
Hippocampal Synaptogenesis And Neurogenesis WP5231 x https://identifiers.org/aop.events/68: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1090: 3 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1271: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1457: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1539: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/1917: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/209: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/214: 0 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/244: 1 overlaps
Hypertrophy Model WP516 x https://identifiers.org/aop.events/288: 0 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/68: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1090: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1271: 6 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1457: 2 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/1917: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/209: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/214: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/244: 3 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/288: 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: 2 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/68: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1090: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1271: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/1457: 0 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/1917: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/209: 2 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/214: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/244: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/288: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/41: 1 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/457: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/484: 0 overlaps
IL1 And Megakaryocytes In Obesity WP2865 x https://identifiers.org/aop.events/68: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/1090: 2 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/1271: 1 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/1457: 1 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/1539: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/1917: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/209: 1 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/214: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/244: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/288: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/41: 0 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/457: 6 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/484: 6 overlaps
Inflammatory Response Pathway WP453 x https://identifiers.org/aop.events/68: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1090: 10 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1271: 2 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1457: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1539: 5 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1917: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/209: 2 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/214: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/244: 3 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/288: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/41: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/457: 10 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/484: 11 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/68: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1090: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1271: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1457: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1539: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1917: 3 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/209: 3 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/214: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/244: 3 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/288: 3 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/41: 3 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/457: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/484: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/68: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/1090: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/1271: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/1457: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/1539: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/1917: 2 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/209: 2 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/214: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/244: 2 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/288: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/41: 2 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/457: 0 overlaps
Iron Metabolism Disorders WP5172 x https://identifiers.org/aop.events/484: 0 overlaps
Iron Metabolism Disorders WP5172 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/1090: 6 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/1457: 0 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/1539: 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/209: 3 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/214: 0 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/288: 0 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: 7 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/484: 8 overlaps
JAK STAT Signaling In The Regulation Of Beta Cells WP5358 x https://identifiers.org/aop.events/68: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1090: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1271: 2 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1457: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1539: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1917: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/209: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/214: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/244: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/288: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/41: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/457: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/484: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/1457: 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/1917: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/209: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/214: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/244: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/288: 0 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/41: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/457: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/484: 1 overlaps
Lactate Shuttle In Glial Cells WP5314 x https://identifiers.org/aop.events/68: 3 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/1090: 3 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/1271: 1 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/1457: 0 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/1539: 1 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/1917: 0 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/209: 1 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/214: 0 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/244: 3 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/288: 0 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/41: 2 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/457: 2 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/484: 3 overlaps
Lipid Metabolism In Senescent Cells WP5149 x https://identifiers.org/aop.events/68: 0 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/1090: 5 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/1271: 2 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/1457: 0 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/1539: 0 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/1917: 3 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/209: 3 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/214: 0 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/244: 3 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/288: 0 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/41: 3 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/457: 3 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/484: 4 overlaps
Lung Fibrosis WP3624 x https://identifiers.org/aop.events/68: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1090: 4 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1271: 2 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1457: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1539: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1917: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/209: 2 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/214: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/244: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/288: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/41: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/457: 5 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/484: 3 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/68: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1090: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1271: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1457: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1539: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1917: 11 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/209: 15 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/214: 3 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/244: 11 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/288: 11 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/41: 14 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/457: 4 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/484: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/68: 0 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/1090: 2 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/1271: 0 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/1457: 0 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/1539: 0 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/1917: 1 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/209: 3 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/214: 0 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/244: 2 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/288: 0 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/41: 2 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/457: 2 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/484: 2 overlaps
Monoamine Transport WP727 x https://identifiers.org/aop.events/68: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1090: 5 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1271: 1 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1457: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1539: 5 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1917: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/209: 5 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/214: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/244: 3 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/288: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/41: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/457: 1 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/484: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/68: 1 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/1271: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/1457: 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/1917: 0 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/209: 4 overlaps
NF1 Copy Number Variation Syndrome WP5366 x https://identifiers.org/aop.events/214: 0 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/288: 0 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: 1 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/68: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1090: 2 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1271: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1457: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1539: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1917: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/209: 1 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/214: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/244: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/288: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/41: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/457: 1 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/484: 2 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/68: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1090: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1271: 1 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1457: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1539: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1917: 46 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/209: 46 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/214: 2 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/244: 46 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/288: 8 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/41: 46 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/457: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/484: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/68: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1090: 8 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1271: 4 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1457: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1539: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1917: 2 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/209: 2 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/214: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/244: 7 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/288: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/41: 2 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/457: 9 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/484: 9 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/68: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1090: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1271: 4 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1457: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1539: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1917: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/209: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/214: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/244: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/288: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/41: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/457: 3 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/484: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/68: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/1090: 2 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/1271: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/1457: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/1539: 1 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/1917: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/209: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/214: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/244: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/288: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/41: 0 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/457: 2 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/484: 1 overlaps
Nephrotic Syndrome WP4758 x https://identifiers.org/aop.events/68: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1090: 7 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1271: 4 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1457: 1 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1539: 2 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/1917: 1 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/209: 9 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/214: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/244: 4 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/288: 0 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/41: 2 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/457: 8 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/484: 6 overlaps
Network Map Of SARS CoV 2 Signaling WP5115 x https://identifiers.org/aop.events/68: 0 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/1090: 1 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/1271: 0 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/1457: 1 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/1539: 0 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/1917: 1 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/209: 2 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/214: 0 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/244: 1 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/288: 0 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/41: 1 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/457: 0 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/484: 1 overlaps
Neurogenesis Regulation In The Olfactory Epithelium WP5265 x https://identifiers.org/aop.events/68: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1090: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1271: 5 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1457: 1 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1539: 2 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1917: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/209: 7 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/214: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/244: 6 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/288: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/41: 4 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/457: 2 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/484: 4 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/68: 2 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/1090: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/1271: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/1457: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/1539: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/1917: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/209: 1 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/214: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/244: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/288: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/41: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/457: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/484: 0 overlaps
Neurotransmitter Disorders WP4220 x https://identifiers.org/aop.events/68: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1090: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1271: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1457: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1539: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1917: 3 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/209: 3 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/214: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/244: 3 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/288: 4 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/41: 3 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/457: 1 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/484: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/68: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1090: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1271: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1457: 0 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1539: 6 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/1917: 2 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/209: 7 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/214: 1 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/244: 5 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/288: 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/457: 4 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/484: 3 overlaps
Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341 x https://identifiers.org/aop.events/68: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1090: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1271: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1457: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1539: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1917: 2 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/209: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/214: 4 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/244: 2 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/288: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/41: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/457: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/484: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/68: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1090: 9 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/1457: 0 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/1917: 46 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/209: 54 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/214: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/244: 51 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/288: 19 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/41: 53 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/457: 15 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/484: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/68: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1090: 7 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1271: 3 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1457: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1539: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1917: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/209: 3 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/214: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/244: 4 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/288: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/41: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/457: 9 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/484: 10 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/68: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1090: 8 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1271: 4 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1457: 1 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1539: 4 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1917: 1 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/209: 9 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/214: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/244: 6 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/288: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/41: 2 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/457: 7 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/484: 5 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/68: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1090: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1271: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1457: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1539: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1917: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/209: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/214: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/244: 3 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/288: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/41: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/457: 5 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/484: 4 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/68: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/1090: 4 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/1271: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/1457: 1 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/1539: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/1917: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/209: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/214: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/244: 2 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/288: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/41: 0 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/457: 3 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/484: 4 overlaps
Overview Of Nanoparticle Effects WP3287 x https://identifiers.org/aop.events/68: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1090: 2 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1271: 1 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1457: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1539: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1917: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/209: 1 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/214: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/244: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/288: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/41: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/457: 2 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/484: 2 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/68: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1090: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1271: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1457: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1539: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1917: 2 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/209: 6 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/214: 2 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/244: 2 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/288: 5 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/41: 4 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/457: 4 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/484: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/68: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1090: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1271: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1457: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1539: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1917: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/209: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/214: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/244: 5 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/288: 0 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: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/484: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/68: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/1090: 6 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/1457: 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/1917: 2 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/209: 32 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/214: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/244: 8 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/288: 0 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/41: 5 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: 7 overlaps
P53 Transcriptional Gene Network WP4963 x https://identifiers.org/aop.events/68: 1 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1090: 36 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1271: 4 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1457: 2 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1539: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1917: 4 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/209: 12 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/214: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/244: 16 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/288: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/41: 10 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/457: 55 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/484: 69 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/68: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1090: 3 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1271: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1457: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1539: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1917: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/209: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/214: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/244: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/288: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/41: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/457: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/484: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/68: 1 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1090: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1271: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1457: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1539: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1917: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/209: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/214: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/244: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/288: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/41: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/457: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/484: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1090: 9 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1271: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1457: 0 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/1917: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/209: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/214: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/244: 7 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/288: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/41: 5 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/457: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/484: 5 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/68: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1090: 4 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/1457: 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/1917: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/209: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/214: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/244: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/288: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/41: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/457: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/484: 4 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/68: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1090: 107 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1271: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1457: 4 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1539: 7 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1917: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/209: 25 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/214: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/244: 21 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/288: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/41: 10 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/457: 36 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/484: 40 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/68: 1 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1090: 7 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1271: 2 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1457: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1539: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1917: 1 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/209: 5 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/214: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/244: 3 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/288: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/41: 1 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/457: 5 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/484: 4 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/68: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1090: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1271: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1457: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1539: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1917: 8 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/209: 8 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/214: 3 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/244: 8 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/288: 13 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/41: 9 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/457: 4 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/484: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/68: 0 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/1457: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1539: 4 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/209: 6 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/214: 0 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/288: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/41: 1 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: 5 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/68: 1 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/1090: 5 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/1271: 3 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/1457: 0 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/1539: 1 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/1917: 1 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/209: 9 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/214: 1 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/244: 2 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/288: 1 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/41: 3 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/457: 6 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/484: 5 overlaps
Primary Ovarian Insufficiency WP5316 x https://identifiers.org/aop.events/68: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1090: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1271: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1457: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1539: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1917: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/209: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/214: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/244: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/288: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/41: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/457: 2 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/484: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/68: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1090: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1271: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1457: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1539: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1917: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/209: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/214: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/244: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/288: 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/484: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/68: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1090: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1271: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1457: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1539: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1917: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/209: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/214: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/244: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/288: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/41: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/457: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/484: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/68: 1 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/1271: 0 overlaps
PtdIns 4 5 P2 In Cytokinesis Pathway WP5199 x https://identifiers.org/aop.events/1457: 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/1917: 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/214: 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/288: 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/68: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/1090: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/1271: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/1457: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/1539: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/1917: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/209: 1 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/214: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/244: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/288: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/41: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/457: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/484: 0 overlaps
Purinergic Signaling WP4900 x https://identifiers.org/aop.events/68: 0 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/1090: 2 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/1271: 1 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/1457: 0 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/1539: 1 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/1917: 4 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/209: 5 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/214: 0 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/244: 5 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/288: 1 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/41: 4 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/457: 1 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/484: 1 overlaps
Quercetin And Nf kB AP 1 Induced Apoptosis WP2435 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
Regulation Sister Chromatid Sep At Meta-Anaphase Transition WP4240 x https://identifiers.org/aop.events/1457: 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/1917: 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/214: 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/288: 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/68: 0 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/1271: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1457: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/1539: 2 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/209: 5 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/214: 0 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/244: 8 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/288: 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: 5 overlaps
Retinoblastoma Gene In Cancer WP2446 x https://identifiers.org/aop.events/68: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1090: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1271: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1457: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1539: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1917: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/209: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/214: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/244: 6 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/288: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/41: 6 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/457: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/484: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/68: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1090: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1271: 1 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1457: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1539: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/1917: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/209: 2 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/214: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/244: 3 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/288: 0 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/41: 2 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/457: 2 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/484: 2 overlaps
Senescence Associated Secretory Phenotype SASP WP3391 x https://identifiers.org/aop.events/68: 0 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/1090: 2 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/1271: 0 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/1457: 0 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/1539: 0 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/1917: 0 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/209: 0 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/214: 1 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/244: 1 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/288: 1 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/41: 1 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/457: 2 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/484: 2 overlaps
Sildenafil Treatment WP5294 x https://identifiers.org/aop.events/68: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1090: 11 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/1457: 1 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/1917: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 4 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/214: 1 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 10 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/288: 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/457: 14 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/484: 15 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/68: 0 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/1090: 1 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/1271: 0 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/1457: 0 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/1539: 1 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/1917: 1 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/209: 3 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/214: 0 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/244: 2 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/288: 0 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/41: 3 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/457: 1 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/484: 2 overlaps
Sphingolipid Metabolism In Senescence WP5121 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
Sphingolipid Metabolism Integrated Pathway WP4726 x https://identifiers.org/aop.events/1457: 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/1917: 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/214: 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/288: 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/68: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1090: 3 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1271: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1457: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1539: 3 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/1917: 1 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/209: 4 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/214: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/244: 5 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/288: 0 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/41: 2 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/457: 3 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/484: 5 overlaps
Spinal Cord Injury WP2431 x https://identifiers.org/aop.events/68: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1090: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1271: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1457: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1539: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1917: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/209: 4 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/214: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/244: 1 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/288: 1 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/41: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/457: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/484: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/68: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1090: 2 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1271: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1457: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1539: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1917: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/209: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/214: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/244: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/288: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/41: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/457: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/484: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/68: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1090: 5 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1271: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1457: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1539: 2 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1917: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/209: 2 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/214: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/244: 3 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/288: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/41: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/457: 3 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/484: 3 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/68: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/1090: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/1271: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/1457: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/1539: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/1917: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/209: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/214: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/244: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/288: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/41: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/457: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/484: 0 overlaps
Synthesis Of Ceramides And 1 Deoxyceramides WP5194 x https://identifiers.org/aop.events/68: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1090: 4 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1271: 2 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1457: 8 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1539: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1917: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/209: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/244: 1 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/41: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/457: 3 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/484: 2 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/68: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1090: 2 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1271: 17 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1457: 2 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1539: 2 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1917: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/209: 4 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/244: 4 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/41: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/457: 7 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/484: 4 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/68: 0 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/1090: 2 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/1271: 17 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/1457: 2 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/1539: 2 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/1917: 1 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/209: 4 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/244: 4 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/41: 1 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/457: 7 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/484: 4 overlaps
TGF Beta Receptor Signaling WP560 x https://identifiers.org/aop.events/68: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1090: 11 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1271: 8 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1457: 4 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1539: 8 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1917: 1 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/209: 5 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/244: 9 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/41: 4 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/457: 11 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/484: 9 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/68: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1090: 2 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1271: 5 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1457: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1539: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1917: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/209: 2 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/214: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/244: 2 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/288: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/41: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/457: 3 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/484: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/68: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1090: 5 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1271: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1457: 2 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1539: 5 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/1917: 1 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/209: 3 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/214: 0 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/244: 5 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/288: 0 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: 8 overlaps
TROP2 Regulatory Signaling WP5300 x https://identifiers.org/aop.events/68: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/1090: 2 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/1271: 2 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/1457: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/1539: 1 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/1917: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/209: 1 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/214: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/244: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/288: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/41: 0 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/457: 2 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/484: 2 overlaps
TYROBP Causal Network In Microglia WP3945 x https://identifiers.org/aop.events/68: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1090: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1271: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1457: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1539: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1917: 3 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/209: 4 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/214: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/244: 3 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/288: 3 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/41: 3 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/457: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/484: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/68: 0 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/1090: 9 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/1271: 1 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/1457: 0 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/1539: 1 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/1917: 1 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/209: 7 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/214: 2 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/244: 5 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/288: 2 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/41: 6 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/457: 10 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/484: 9 overlaps
Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746 x https://identifiers.org/aop.events/68: 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/1271: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1457: 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/1917: 3 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/214: 1 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/288: 1 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/68: 0 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/1090: 1 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/1271: 0 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/1457: 0 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/1539: 0 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/1917: 2 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/209: 3 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/214: 3 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/244: 2 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/288: 4 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/41: 4 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/457: 8 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/484: 3 overlaps
Transcription Factor Regulation In Adipogenesis WP3599 x https://identifiers.org/aop.events/68: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1090: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1271: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1457: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1539: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1917: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/209: 1 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/214: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/244: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/288: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/41: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/457: 1 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/484: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/68: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/1090: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/1271: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/1457: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/1539: 1 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/1917: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/209: 2 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/214: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/244: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/288: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/41: 0 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/457: 2 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/484: 1 overlaps
Type II Interferon Signaling WP619 x https://identifiers.org/aop.events/68: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1090: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1271: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1457: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1539: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1917: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/209: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/214: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/244: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/288: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/41: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/457: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/484: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/68: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 25 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1271: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1457: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1539: 13 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1917: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/214: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/288: 0 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: 10 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/484: 11 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/68: 3 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/1090: 0 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/1271: 0 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/1457: 0 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/1539: 0 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/1917: 1 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/209: 2 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/214: 2 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/244: 1 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/288: 1 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/41: 2 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/457: 4 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/484: 0 overlaps
Vitamin A And Carotenoid Metabolism WP716 x https://identifiers.org/aop.events/68: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/1090: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/1271: 1 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/1457: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/1539: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/1917: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/209: 3 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/214: 2 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/244: 2 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/288: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/41: 2 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/457: 2 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/484: 0 overlaps
Vitamin B12 Metabolism WP1533 x https://identifiers.org/aop.events/68: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1090: 3 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1271: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1457: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1539: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1917: 2 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/209: 7 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/214: 2 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/244: 5 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/288: 4 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/41: 4 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/457: 10 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/484: 5 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/68: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1090: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1271: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1457: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1539: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1917: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/209: 4 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/214: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/244: 4 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/288: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/41: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/457: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/484: 2 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/68: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1090: 2 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1271: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1457: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1539: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1917: 3 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/209: 3 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/214: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/244: 3 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/288: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/41: 3 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/457: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/484: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/68: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1090: 2 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1271: 2 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1457: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1539: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1917: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/209: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/214: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/244: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/288: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/41: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/457: 8 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/484: 10 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 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: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'JUN', 'ITGB3', 'TP53'}, number: 4
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN', 'MEF2A'}, number: 3
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 5
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 6
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'JUN', 'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 7
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 4
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GYS1', 'TP53', 'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 7
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'ITGB3', 'MEF2A', 'GYS1', 'ABCA1'}, number: 5
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'GYS1', 'ITGB3', 'TP53'}, number: 4
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'AKT1S1', 'DEPTOR', 'AKT3', 'PDGFRB', 'TSC2', 'RPTOR'}, number: 7
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'PRKCZ', 'PLCG1', 'PRKCA', 'PIK3R1'}, number: 5
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'SLC6A1'}, number: 2
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC6A1', 'AKT1S1', 'PRKCA', 'SESN1', 'DEPTOR', 'GLS2', 'SOD1', 'TSC2', 'MAOA', 'RPTOR'}, number: 10
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC6A1', 'PRKCA', 'SESN1', 'AKT3', 'PIK3R1'}, number: 5
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2C19'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC6A1', 'PIK3R1', 'PRKCA', 'TSC2', 'ADRA1A', 'RPTOR'}, number: 6
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'AKT1S1', 'AKT3', 'PDGFRB', 'TSC2', 'PIK3R1', 'RPTOR'}, number: 7
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'PIK3AP1', 'AKT1S1', 'PRKCA', 'AKT3', 'PDGFRB', 'TSC2', 'PIK3R1', 'RPTOR'}, number: 9
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GLS', 'PLCG1'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'WWTR1', 'CDKN1A', 'FZD1', 'PPARGC1A'}, number: 4
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'SERPINE1', 'BMP4'}, number: 3
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MEF2A'}, number: 1
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4', 'RXRA'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A4', 'LPL', 'FZD1', 'PCK1', 'CDKN1A', 'SERPINE1', 'RXRA', 'GADD45A', 'PPARG'}, number: 9
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA', 'IRS2', 'PPARGC1A'}, number: 3
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'SLC2A4', 'CDKN1A', 'GADD45A', 'RXRA'}, number: 5
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'NRIP1', 'RXRA', 'IRS2', 'PPARGC1A'}, number: 4
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A4', 'CDKN1A', 'RXRA', 'IRS2', 'PPARGC1A'}, number: 5
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MEF2A', 'STAT2', 'LPL', 'BMP4', 'NR3C1', 'RXRA', 'HMGA1', 'IRS2', 'CYP26B1', 'NR2F1', 'SLC2A4', 'RBL1', 'PCK1', 'PRLR', 'LPIN2', 'LPIN3', 'PPARGC1A', 'CEBPD', 'SPOCK1', 'EPAS1', 'FZD1', 'LMNA', 'NRIP1', 'CDKN1A', 'SERPINE1', 'PPARG', 'PLIN2', 'SMAD3', 'PNPLA3', 'EBF1', 'WWTR1', 'GADD45A', 'RARA'}, number: 33
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'EPAS1', 'PCK1', 'PRLR', 'CDKN1A', 'IRS2', 'PPARGC1A'}, number: 7
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'MMP2'}, number: 2
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SERPINE1', 'TGFBR2', 'SPP1'}, number: 5
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'SERPINE1', 'TGFBR2'}, number: 3
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TGFBR2'}, number: 2
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SERPINE1', 'SPP1'}, number: 3
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SPP1'}, number: 1
Term: Affected Pathways In Duchenne Muscular Dystrophy WP5356, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCZ'}, number: 1
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'COL5A1', 'VEGFA'}, number: 2
Term: Allograft Rejection WP2328, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL5A1', 'VEGFA'}, number: 2
Term: Allograft Rejection WP2328, 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/1090, 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/1457, 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/1917, Title of overlapping gene(s): {'GCLM', 'GSR'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GCLM', 'PCK1', 'HMGCS2', 'MAOA', 'GSR'}, number: 5
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/214, 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): {'GCLM', 'GSR'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/288, 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): {'GCLM', 'GSR'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HMGCS2', 'PCK1'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2', 'LDHA', 'GLS'}, number: 3
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): set(), number: 0
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): set(), number: 0
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1457, 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/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/1917, Title of overlapping gene(s): {'GCLM', 'KEAP1', 'GSTA2', 'NFE2L2', 'RXRA', 'SLC7A11'}, number: 6
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): {'GCLM', 'KEAP1', 'GSTA2', 'NFE2L2', 'RXRA', 'SLC7A11'}, number: 6
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/214, 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/244, Title of overlapping gene(s): {'GCLM', 'KEAP1', 'GSTA2', 'NFE2L2', 'RXRA', 'SLC7A11'}, number: 6
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'GSTA2', 'RXRA'}, number: 2
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): {'GCLM', 'KEAP1', 'GSTA2', 'NFE2L2', 'RXRA', 'SLC7A11'}, number: 6
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): {'IRF3', 'RXRA', 'IKBKG'}, number: 3
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): {'IKBKG'}, number: 1
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: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'ITGA1', 'ACTB', 'CTNNA1', 'ACTG1', 'LAMA2', 'ITGB4', 'ITGA6'}, number: 8
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'ITGB6'}, number: 1
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'GJA1'}, number: 1
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'ITGB6', 'CTNNA1', 'LMNA', 'ITGB8', 'LAMA2', 'ITGB4', 'ITGA11', 'ITGA6', 'ITGA5'}, number: 10
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'ITGA1', 'ITGB6', 'ITGB8', 'LAMA2', 'ITGB4', 'ITGA11', 'ITGA6', 'ITGA5'}, number: 9
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'JUN', 'SLC7A5'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN', 'JUND'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A7', 'GSTA2', 'ALDH3A1', 'NFE2L2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'UGT1A7', 'GSTA2', 'ALDH3A1', 'CYP1A1', 'NFE2L2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 10
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'UGT1A7', 'GSTA2', 'ALDH3A1', 'NFE2L2', 'UGT1A9', 'CDKN1B', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 10
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'GSTA2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 5
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A7', 'GSTA2', 'ALDH3A1', 'NFE2L2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'CDKN1B'}, number: 2
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'CDKN1B'}, number: 2
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MET', 'WNT5A', 'HRAS'}, number: 3
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'CFL1', 'HRAS', 'PRKCZ'}, number: 4
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'WNT5A'}, number: 2
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'WNT5A', 'HRAS'}, number: 3
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MET', 'HRAS'}, number: 2
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'MET', 'HRAS'}, number: 3
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'TGFA', 'JUN', 'MAP3K1'}, number: 5
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'SMAD5', 'BMP4'}, number: 3
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN', 'MAP3K1'}, number: 3
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA'}, number: 1
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'JUN', 'NOTCH1'}, number: 3
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFA', 'JUN', 'MAP3K1'}, number: 3
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA'}, number: 1
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'BMP4'}, number: 3
Term: BMP Signaling In Eyelid Development WP3927, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'TGFA'}, number: 3
Term: BMP Signaling In Eyelid Development WP3927, 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/1090, Title of overlapping gene(s): {'EGFR', 'CDH1', 'TP53', 'MMP2', 'CDKN1A', 'MDM2', 'HRAS', 'VEGFA', 'HBEGF'}, number: 9
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1', 'HRAS'}, number: 2
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH1'}, number: 1
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'PIK3R1', 'HRAS'}, number: 3
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/209, Title of overlapping gene(s): {'THBS1', 'CDKN1A', 'HBEGF'}, number: 3
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'CDKN1A', 'MDM2', 'HRAS', 'PIK3R1', 'HBEGF'}, number: 6
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A', 'HBEGF', 'TP53'}, number: 4
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'THBS1', 'CDKN1A', 'MDM2', 'HRAS', 'VEGFA', 'PIK3R1'}, number: 7
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'TP53', 'THBS1', 'CDKN1A', 'MDM2', 'HRAS', 'VEGFA', 'PIK3R1'}, number: 8
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Blood Clotting Cascade WP272, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HGF', 'FGFR2', 'TP53', 'BCL2', 'MMP2', 'HMGB1', 'PDGFRB', 'VEGFA', 'SFRP2'}, number: 9
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST', 'SMAD3'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'TNC'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF'}, number: 1
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'ICAM1', 'SFRP2', 'HMGB1'}, number: 4
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'SMAD3', 'TP53', 'BCL2', 'HMGB1'}, number: 5
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'TP53'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HGF', 'FGFR2', 'SMAD3', 'TNC', 'PDGFRB', 'VEGFA', 'COL1A1'}, number: 7
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HGF', 'FGFR2', 'TP53', 'BCL2', 'TNC', 'PDGFRB', 'VEGFA', 'COL1A1'}, number: 8
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: COVID 19 Thrombosis And Anticoagulation WP4927, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'PRKCZ', 'GJA1'}, number: 3
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2B', 'CAMK2D', 'PRKCA'}, number: 3
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'ADRA1A'}, number: 2
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GNB1', 'CHRM1'}, number: 2
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'GNB1', 'PRKCA', 'CHRM1'}, number: 3
Term: Calcium Regulation In Cardiac Cells WP536, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TP53', 'LRP5', 'FN1', 'CCND2', 'HRAS', 'ITGA6', 'LAMA1', 'CDH1', 'CTNNA1', 'JUN', 'AKT3', 'COL4A6', 'EGFR', 'FGFR2', 'TGFA', 'BCL2', 'FZD1', 'MMP2', 'WNT6', 'CDKN1A', 'PDGFRB', 'SLC2A1', 'VEGFA', 'WNT5A', 'HGF', 'WNT7B', 'LAMB1', 'FZD7', 'KITLG', 'FGF1', 'LAMA2', 'LAMA3', 'MET', 'MDM2', 'RASSF5'}, number: 35
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'TGFBR1', 'BMP4', 'JUN', 'TGFBR2', 'HRAS'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH1', 'SMAD3', 'FN1'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN', 'PLD1', 'PLCG1', 'PRKCA', 'HRAS', 'PLD2', 'JAK2', 'PIK3R1'}, number: 9
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'TXNRD1', 'TGFA', 'KEAP1', 'GSTA2', 'NFE2L2', 'PRKCA', 'RXRA', 'GSTA4', 'SLC2A1', 'TGFBR2'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'LRP5', 'CCND2', 'NFE2L2', 'PRKCA', 'RXRA', 'PLCB1', 'CAMK2D', 'PML', 'JUN', 'CAMK2B', 'TGFA', 'FZD1', 'GSTA2', 'WNT6', 'ROCK2', 'CDKN1A', 'GSTA4', 'SLC2A1', 'NOTCH1', 'PPARG', 'WNT5A', 'HGF', 'BRCA2', 'WNT7B', 'KEAP1', 'FZD7', 'GADD45A', 'DDB2', 'TGFBR2', 'MSH2'}, number: 31
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'TP53', 'CCND2', 'NFE2L2', 'PRKCA', 'RXRA', 'HRAS', 'PML', 'JUN', 'NFKB2', 'AKT3', 'TGFA', 'BCL2', 'GSTA2', 'WNT6', 'CDKN1A', 'CDKN1B', 'GSTA4', 'SLC2A1', 'PIK3R1', 'WNT5A', 'HGF', 'SMAD3', 'WNT7B', 'KEAP1', 'CCNE2', 'GADD45A', 'MDM2', 'DDB2', 'TGFBR2', 'BCL2L11'}, number: 31
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'GSTA2', 'RXRA'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'CCNA2', 'TXNRD1', 'TP53', 'TGFA', 'KEAP1', 'GSTA2', 'NFE2L2', 'PRKCA', 'CDKN1A', 'RXRA', 'GSTA4', 'SLC2A1', 'TGFBR2', 'PLCB1', 'PIK3R1'}, number: 16
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'STAT2', 'BMP4', 'FN1', 'RXRA', 'HRAS', 'JAK2', 'ITGA6', 'LAMA1', 'IKBKG', 'CTNNA1', 'AKT3', 'COL4A6', 'EGFR', 'FGFR2', 'MECOM', 'EPAS1', 'FZD1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'SLC2A1', 'GNB1', 'VEGFA', 'PPARG', 'PIK3R1', 'IFNAR2', 'HGF', 'SMAD3', 'LAMB1', 'KITLG', 'FGF1', 'LAMA2', 'LAMA3', 'GADD45A', 'MET', 'MDM2', 'RARA'}, number: 37
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'FN1', 'CCND2', 'PRKCA', 'HRAS', 'JAK2', 'ITGA6', 'LAMA1', 'IKBKG', 'AKT3', 'COL4A6', 'EGFR', 'FGFR2', 'TGFA', 'BCL2', 'EPAS1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'SLC2A1', 'GNB1', 'VEGFA', 'PIK3R1', 'IFNAR2', 'HGF', 'LAMB1', 'KITLG', 'FGF1', 'LAMA2', 'LAMA3', 'CCNE2', 'MET', 'MDM2', 'BCL2L11'}, number: 34
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1', 'SLC2A1'}, number: 2
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND2', 'CDKN1A', 'MDM2', 'TP53'}, number: 4
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PCNA', 'CDC25C', 'CCND2', 'CDKN1A', 'GADD45A'}, number: 5
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK1', 'SMAD3', 'TP53', 'CDC25C', 'CCND2', 'CCNE2', 'CDKN1A', 'GADD45A', 'CDKN1B', 'MDM2', 'SMC1A'}, number: 11
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNA2', 'TP53'}, number: 3
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'RBL1', 'CDKN1A', 'GADD45A', 'CDKN1B', 'MDM2'}, number: 6
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'CCND2', 'CCNE2', 'CDKN1A', 'CDKN1B', 'MDM2'}, number: 6
Term: Cell Cycle WP179, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDH1', 'ITGA6'}, number: 2
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'BMP4'}, number: 1
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH1', 'TNC'}, number: 2
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'AP2A1'}, number: 1
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC6A1'}, number: 1
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'SLC6A1'}, number: 2
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC6A1'}, number: 1
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC6A1', 'HNF4A'}, number: 2
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA6', 'TNC', 'BMP4'}, number: 3
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA6', 'TNC'}, number: 2
Term: Cell Lineage Map For Neuronal Differentiation WP5417, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GLS'}, number: 1
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB2'}, number: 1
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ICAM1'}, number: 1
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB2'}, number: 1
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB2'}, number: 1
Term: Cells And Molecules Involved In Acute Inflammatory Response WP4493, 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/1090, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PLTP', 'APOA2', 'CYP27A1'}, number: 5
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LBR', 'CYP7A1', 'LPL', 'TM7SF2', 'LSS', 'ABCA1', 'MYLIP', 'CYP27A1'}, number: 8
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/484, 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: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'PPARGC1A', 'EZH2', 'TP53'}, number: 4
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'SERPINE1'}, number: 2
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'JUND'}, number: 2
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PML', 'JUN', 'ROCK2', 'SERPINE1', 'PPARG'}, number: 5
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'PML', 'TP53'}, number: 3
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'NRIP1', 'PPARGC1A'}, number: 2
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A', 'TP53'}, number: 2
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NRIP1', 'SERPINE1', 'CHRM1', 'PPARG', 'PPARGC1A'}, number: 5
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A', 'CHRM1', 'TP53'}, number: 3
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A9', 'UGT1A6', 'UGT2B7', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A9', 'UGT1A6', 'UGT2B7', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3'}, number: 1
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A9', 'UGT1A6', 'UGT2B7', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'SLCO1B1', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A9', 'UGT1A6', 'UGT2B7', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Complement And Coagulation Cascades WP558, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'ITGB2'}, number: 2
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCZ'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CX3CL1'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'VTN', 'ITGB2'}, number: 3
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'VTN', 'ITGB2'}, number: 3
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'LAMB1'}, number: 2
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1', 'SPP1'}, number: 2
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'TXN'}, number: 2
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1', 'PRKCA', 'ICAM1', 'TXN'}, number: 4
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'TXN'}, number: 2
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'TXN'}, number: 2
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'LAMB1', 'VTN', 'THBS1', 'SPP1'}, number: 5
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'LAMB1', 'VTN', 'PRKCA', 'THBS1', 'SPP1'}, number: 6
Term: Complement System WP2806, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'CYP4A11', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 9
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'CYP4A11', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 9
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'RXRA', 'PPARGC1A'}, number: 3
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'CYP4A11', 'UGT1A9', 'RXRA', 'UGT1A6', 'SMC1A', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 10
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP2A6', 'GSTA2', 'UGT1A1', 'CYP2C19', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'PPARGC1A'}, number: 11
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'UGT1A1', 'CYP4A11', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'PPARGC1A'}, number: 10
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'RXRA', 'PPARGC1A'}, number: 3
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'IL34'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'TGFBR2', 'BMP4'}, number: 3
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CX3CL1', 'TGFBR2'}, number: 2
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LEPR', 'TGFBR2'}, number: 2
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IFNAR2', 'PRLR', 'GHR', 'BMP4'}, number: 4
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IFNAR2', 'GHR', 'PRLR'}, number: 3
Term: Cytokine Cytokine Receptor Interaction WP5473, 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/1090, Title of overlapping gene(s): {'BARD1', 'TP53', 'BRCA1', 'MDM2', 'FOXM1'}, number: 5
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/1457, 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/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/209, Title of overlapping gene(s): {'USP1', 'BRCA2', 'EXO1', 'PML', 'PCNA', 'FANCD2', 'RPA1', 'BRIP1', 'CDC25C', 'FANCI', 'BRCA1', 'MSH2'}, number: 12
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK1', 'PML', 'TP53', 'FANCD2', 'CDC25C', 'BRCA1', 'MDM2', 'SMC1A'}, number: 8
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/288, 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/457, Title of overlapping gene(s): {'MDM2', 'IKBKG'}, number: 2
Term: DNA IR Damage And Cellular Response Via ATR WP4016, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IKBKG', 'BRCA1', 'MDM2', 'TP53'}, number: 4
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: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'RBBP4', 'TP53', 'LATS2', 'AKT1S1', 'DEPTOR', 'TSC2', 'RPTOR'}, number: 7
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/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/1539, Title of overlapping gene(s): {'DNM1', 'SPRY2'}, number: 2
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/209, Title of overlapping gene(s): {'AKT1S1', 'DEPTOR', 'NOTCH1', 'TSC2', 'RPTOR'}, number: 5
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1B', 'TP53'}, number: 2
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC2', 'RPTOR', 'TP53'}, number: 3
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RBL1', 'AKT1S1', 'CDKN1B', 'TSC2', 'RPTOR'}, number: 5
Term: DYRK1A Involvement Regarding Cell Prolif In Brain Development WP5180, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'AKT1S1', 'CDKN1B', 'TSC2', 'RPTOR'}, number: 5
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: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1', 'APOA2'}, number: 2
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Dengue 2 Interactions With Complement And Coagulation Cascades WP3896, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR2'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST', 'BMP4'}, number: 2
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RARA', 'FGFR2', 'BMP4'}, number: 3
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR2'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2B', 'CAMK2D'}, number: 2
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, 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/1090, Title of overlapping gene(s): {'EGFR', 'RPS6KA1', 'SHC1', 'JUN', 'HRAS', 'MAP3K2', 'MAP3K1'}, number: 7
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/1457, 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): {'MEF2A', 'GJA1', 'SHC1', 'AP2M1', 'RIN1', 'PRKCA', 'HRAS', 'JAK2', 'MAP3K2', 'CFL1', 'PXDN', 'MAP3K1', 'PIK3C2B', 'RPS6KA2', 'FOSB', 'JUN', 'PLD1', 'PRKCZ', 'IQSEC1', 'JUND', 'PLD2', 'CSK', 'PLCE1', 'EGFR', 'PIAS3', 'RPS6KA1', 'PCNA', 'SPRY2', 'AP2A1', 'SH3GL2', 'CAV2', 'CAV1', 'INPP5D', 'PIK3R1', 'DNM1', 'STMN1', 'INPPL1', 'PLCG1', 'HGS'}, number: 39
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/209, Title of overlapping gene(s): {'JUN', 'PRKCA', 'PCNA'}, number: 3
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/214, 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): {'SHC1', 'JUN', 'PRKCA', 'PIK3C2B', 'HRAS', 'PIK3R1', 'MAP3K1'}, number: 7
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'MEF2A', 'HRAS', 'JAK2', 'PIK3R1', 'PIK3C2B'}, number: 6
Term: EGF EGFR Signaling WP437, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'PRKCA', 'HRAS', 'JAK2', 'PIK3R1', 'PIK3C2B'}, number: 6
Term: EGF EGFR Signaling WP437, 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/1090, Title of overlapping gene(s): {'EGFR', 'HGF', 'FGFR2', 'SHC1', 'PDGFD', 'TGFA', 'BCL2', 'AKT3', 'PDGFRB', 'HRAS', 'MET', 'VEGFA', 'KDR'}, number: 13
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1457, 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): {'EGFR', 'SHC1', 'PLCG1', 'PRKCA', 'HRAS', 'JAK2', 'PIK3R1'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'HGF', 'NRG1'}, number: 4
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'HGF', 'NRG1'}, number: 4
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'SHC1', 'TGFA', 'BCL2', 'NRG1', 'PRKCA', 'AKT3', 'HRAS', 'PIK3R1', 'BCL2L11'}, number: 10
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'TGFA', 'NRG1', 'PRKCA', 'PIK3R1'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'HGF', 'FGFR2', 'PDGFD', 'EIF4E2', 'VEGFA', 'AKT3', 'PDGFRB', 'HRAS', 'MET', 'JAK2', 'PIK3R1', 'KDR'}, number: 13
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'HGF', 'FGFR2', 'PDGFD', 'EIF4E2', 'TGFA', 'BCL2', 'VEGFA', 'BCL2L11', 'PRKCA', 'AKT3', 'PDGFRB', 'HRAS', 'MET', 'JAK2', 'PIK3R1', 'KDR'}, number: 17
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'ITGA1', 'ITGB3', 'ACTB', 'ACTG1', 'ITGA6'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'PIK3R1', 'CAV1', 'CAV2'}, number: 4
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1', 'NFKB2'}, number: 2
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'ITGB3', 'IRF3', 'ITGA6', 'PIK3R1', 'ITGA5'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'ITGA1', 'ITGB3', 'ITGA6', 'PIK3R1', 'ITGA5'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDH6', 'FGFR2', 'PODXL'}, number: 3
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'BMP4'}, number: 1
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH6'}, number: 1
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'SPRY2'}, number: 1
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ELOVL2', 'FGFR2', 'NR2F2', 'BMP4'}, number: 4
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR2'}, number: 1
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP4A11'}, number: 1
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PPARG', 'CYP4A11'}, number: 2
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP4A11'}, number: 1
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP4A11'}, number: 1
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARG'}, number: 1
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metab Via Cytochrome P450 Monooxygenases Pathway WP4720, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PTGR1', 'CYP4A11'}, number: 2
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PTGR1', 'PPARG', 'CYP4A11'}, number: 3
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PTGR1', 'CYP4A11'}, number: 2
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PTGR1', 'CYP4A11'}, number: 2
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARG'}, number: 1
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Eicosanoid Metabolism Via Cyclooxygenases COX WP4719, 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/1090, Title of overlapping gene(s): {'CCN2', 'HRAS'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'HRAS'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'CFL1', 'HRAS'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'HRAS'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LBR', 'SMAD3', 'HRAS'}, number: 3
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HRAS'}, number: 1
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: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SHC1', 'TP53', 'LRP5', 'FN1', 'LATS2', 'HRAS', 'MAP2K6', 'CDH1', 'AKT3', 'COL4A6', 'FOXM1', 'EZH2', 'WNT6', 'FZD1', 'MMP2', 'WNT5A', 'RBBP4', 'WNT7B', 'SUZ12', 'FZD7'}, number: 20
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR2', 'HRAS'}, number: 4
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH1', 'SMAD3', 'FN1', 'ID1'}, number: 4
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PIK3R1', 'SHC1', 'HRAS'}, number: 3
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'WNT7B', 'LRP5', 'WNT6', 'FZD1', 'FZD7', 'TGFBR2', 'NOTCH1', 'WNT5A'}, number: 8
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'SHC1', 'TP53', 'WNT7B', 'WNT6', 'AKT3', 'TGFBR2', 'HRAS', 'PIK3R1', 'WNT5A'}, number: 10
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'TGFBR2', 'TP53'}, number: 3
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'VTN', 'FZD1', 'FN1', 'AKT3', 'COL4A6', 'HRAS', 'ITGA5', 'PIK3R1'}, number: 9
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'VTN', 'FN1', 'AKT3', 'HRAS', 'COL4A6', 'ITGA5', 'PIK3R1'}, number: 8
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: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A6', 'UGT2B7', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP1A1', 'UGT1A9', 'UGT1A6', 'UGT2B7', 'UGT1A1'}, number: 5
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A6', 'UGT2B7', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A6', 'UGT2B7', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HGF', 'EGFR', 'TGFA', 'MET', 'HRAS', 'WNT5A'}, number: 6
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'TGFBR2', 'HRAS'}, number: 5
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'HRAS'}, number: 2
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'TGFA', 'TGFBR2'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'WNT5A', 'TGFA', 'TGFBR2'}, number: 4
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'SMAD3', 'TGFA', 'TGFBR2', 'HRAS', 'WNT5A'}, number: 6
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'TGFA', 'TGFBR2'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HGF', 'EGFR', 'SMAD3', 'MET', 'HRAS'}, number: 5
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HGF', 'EGFR', 'TGFA', 'MET', 'HRAS'}, number: 5
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB2'}, number: 1
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ISG15'}, number: 1
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IFNAR2', 'ITGB2'}, number: 2
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SYK', 'IFNAR2', 'ITGB2'}, number: 3
Term: Extrafollicular And Follicular B Cell Activation By SARS CoV 2 WP5218, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR2', 'CDKN1A'}, number: 2
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SPP1'}, number: 1
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'NFKB2'}, number: 2
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGFR2', 'CDKN1A', 'SPP1'}, number: 3
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR2', 'CDKN1A', 'SPP1'}, number: 3
Term: FGF23 Signaling In Hypophosphatemic Rickets Related Disorders WP4790, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APOA2', 'LPL', 'PLTP'}, number: 3
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRA', 'CYP8B1', 'CYP7A1'}, number: 3
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'IP6K3', 'CYP8B1', 'CYP7A1', 'RXRA', 'NR1H4', 'BAAT', 'IRS2', 'PPARGC1A'}, number: 8
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'IP6K3', 'CYP8B1', 'CYP7A1', 'RXRA', 'NR1H4', 'BAAT', 'IRS2', 'PPARGC1A'}, number: 8
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IP6K3', 'CYP8B1', 'CYP7A1', 'RXRA', 'NR1H4', 'BAAT', 'IRS2', 'PPARGC1A'}, number: 8
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'RXRA', 'CYP7A1', 'IRS2', 'PPARGC1A'}, number: 4
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'CYP4A11'}, number: 2
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'CYP1A1', 'CYP4A11'}, number: 3
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'CYP4A11'}, number: 2
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2A6'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'CYP4A11'}, number: 2
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2', 'TP53'}, number: 2
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/1457, 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/1917, Title of overlapping gene(s): {'GCLM', 'TXNRD1', 'FTL', 'FTH1', 'SLC7A11'}, number: 5
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'GCLM', 'FTL', 'ACSL5', 'FTH1', 'SLC7A11'}, number: 6
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'TXNRD1', 'TP53', 'FTL', 'FTH1', 'SLC7A11'}, number: 6
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GCLM', 'TXNRD1', 'TP53', 'FTL', 'FTH1', 'SLC7A11'}, number: 6
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5'}, number: 1
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'RASSF5', 'ITGB2'}, number: 2
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IKBKG', 'IRF3', 'ITGB2'}, number: 3
Term: Fibrin Complement Receptor 3 Signaling WP4136, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IKBKG', 'SYK', 'ITGB2'}, number: 3
Term: Fibrin Complement Receptor 3 Signaling WP4136, 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/1090, Title of overlapping gene(s): {'TP53'}, number: 1
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/1457, 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/1917, Title of overlapping gene(s): {'CYP2A6', 'ABCC3', 'CES2'}, number: 3
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'ERCC2', 'ABCC3', 'CES2'}, number: 4
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3'}, number: 1
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'ABCC3', 'CES2', 'TP53'}, number: 4
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2A6', 'ABCC3'}, number: 2
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'ABCC3', 'CES2', 'TP53'}, number: 4
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): {'TP53'}, number: 1
Term: Fluoropyrimidine Activity WP1601, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PDGFD', 'FN1', 'ITGB2', 'HRAS', 'ITGA6', 'LAMA1', 'FGF14', 'AKT1S1', 'AKT3', 'COL4A6', 'PPARGC1A', 'EGFR', 'FGFR2', 'FGF12', 'CDKN1A', 'PDGFRB', 'EFNA5', 'SLC2A1', 'VEGFA', 'KDR', 'ITGB3', 'HGF', 'LAMB1', 'FGF13', 'KITLG', 'FGF1', 'LAMA2', 'LAMA3', 'ITGB4', 'MET', 'MDM2', 'TSC2', 'RPTOR'}, number: 33
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1', 'SPP1', 'ITGB6', 'HRAS'}, number: 4
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC', 'FN1'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'HRAS', 'JAK2', 'PIK3R1', 'PIK3C2B'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'SLC2A4', 'SLC2A2', 'FGF13', 'SLC2A1'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'SLC2A4', 'SLC2A2', 'FGF13', 'AKT1S1', 'THBS1', 'CDKN1A', 'SLC2A1', 'TSC2', 'DDIT4', 'RPTOR'}, number: 11
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'SLC2A4', 'SLC2A2', 'FGF13', 'CDKN1A', 'AKT3', 'CDKN1B', 'HRAS', 'SLC2A1', 'MDM2', 'PIK3R1', 'PIK3C2B'}, number: 12
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GYS1', 'HGF', 'CAB39', 'SLC2A4', 'PFKFB3', 'SLC2A2', 'RPTOR', 'FGF13', 'CDKN1A', 'SLC2A1', 'TSC2', 'PIK3R1', 'IRS2', 'PPARGC1A'}, number: 14
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PFKFB4', 'PDGFD', 'COL3A1', 'FN1', 'ITGB2', 'THBS2', 'HRAS', 'SPP1', 'JAK2', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'IRS2', 'PIK3C2B', 'COL5A1', 'SLC2A4', 'PPP2R2B', 'EIF4E2', 'PFKFB3', 'VTN', 'SLC2A2', 'FGF14', 'PRLR', 'PELO', 'AKT1S1', 'AKT3', 'COL4A6', 'PPARGC1A', 'EGFR', 'CAB39', 'FGFR2', 'EPAS1', 'FGF12', 'ITGB8', 'CDKN1A', 'CHRM1', 'CDKN1B', 'PDGFRB', 'SLC2A1', 'EFNA5', 'VEGFA', 'GNB1', 'PIK3R1', 'IFNAR2', 'KDR', 'FOXA1', 'ITGB3', 'GYS1', 'HGF', 'ITGA5', 'ITGB6', 'LAMB1', 'TNC', 'KITLG', 'FGF1', 'FGF13', 'LAMA2', 'LAMA3', 'THBS1', 'ITGB4', 'MET', 'TNXB', 'MDM2', 'TSC2', 'PPP2R5B', 'RPTOR'}, number: 70
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PFKFB4', 'PDGFD', 'COL3A1', 'FN1', 'ITGB2', 'THBS2', 'HRAS', 'SPP1', 'JAK2', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'IRS2', 'PIK3C2B', 'COL5A1', 'SLC2A4', 'PPP2R2B', 'EIF4E2', 'PFKFB3', 'VTN', 'SLC2A2', 'FGF14', 'PRLR', 'PELO', 'AKT1S1', 'AKT3', 'COL4A6', 'PPARGC1A', 'EGFR', 'CAB39', 'FGFR2', 'EPAS1', 'FGF12', 'ITGB8', 'CDKN1A', 'CHRM1', 'CDKN1B', 'PDGFRB', 'SLC2A1', 'EFNA5', 'VEGFA', 'GNB1', 'PIK3R1', 'IFNAR2', 'KDR', 'FOXA1', 'ITGB3', 'GYS1', 'HGF', 'ITGA5', 'ITGB6', 'LAMB1', 'TNC', 'KITLG', 'FGF1', 'FGF13', 'LAMA2', 'LAMA3', 'THBS1', 'ITGB4', 'MET', 'TNXB', 'MDM2', 'TSC2', 'PPP2R5B', 'RPTOR'}, number: 70
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SHC1', 'PDGFD', 'FN1', 'CCND2', 'HRAS', 'ITGA6', 'LAMA1', 'ITGA1', 'ACTB', 'ACTG1', 'JUN', 'AKT3', 'COL4A6', 'EGFR', 'PAK2', 'BCL2', 'PDGFRB', 'VEGFA', 'KDR', 'ITGB3', 'HGF', 'LAMB1', 'LAMA2', 'LAMA3', 'ITGB4', 'MET'}, number: 26
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'ITGB6', 'JUN', 'THBS1', 'SPP1', 'HRAS'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC', 'FN1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'SHC1', 'JUN', 'CAV2', 'CAV1', 'PRKCA', 'HRAS', 'PIK3R1'}, number: 8
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'PRKCA'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'JUN', 'ROCK2', 'CCND2', 'PRKCA', 'THBS1'}, number: 6
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'SHC1', 'BCL2', 'JUN', 'CCND2', 'PRKCA', 'AKT3', 'HRAS', 'PIK3R1'}, number: 9
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'PRKCA', 'PIK3R1'}, number: 3
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PDGFD', 'FN1', 'THBS2', 'HRAS', 'SPP1', 'ITGA11', 'COL1A1', 'ITGA6', 'LAMA1', 'VTN', 'AKT3', 'COL4A6', 'EGFR', 'ITGB8', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'HGF', 'ITGB6', 'LAMB1', 'TNC', 'LAMA2', 'LAMA3', 'THBS1', 'ITGB4', 'MET', 'TNXB', 'ITGA5'}, number: 30
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PDGFD', 'FN1', 'THBS2', 'CCND2', 'PRKCA', 'HRAS', 'SPP1', 'ITGA11', 'COL1A1', 'ITGA6', 'LAMA1', 'ITGA1', 'VTN', 'AKT3', 'COL4A6', 'EGFR', 'BCL2', 'ITGB8', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'HGF', 'ITGB6', 'LAMB1', 'TNC', 'LAMA2', 'LAMA3', 'THBS1', 'ITGB4', 'MET', 'TNXB', 'ITGA5'}, number: 34
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GPX3'}, number: 1
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SOD1', 'SERPINE1', 'GPX3', 'ICAM1'}, number: 4
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR', 'NFKB2', 'GPX3', 'TP53'}, number: 4
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'GPX3', 'TP53'}, number: 4
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1', 'ABCA1'}, number: 2
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53'}, number: 1
Term: Folate Metabolism WP176, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EIF4G1', 'SHC1', 'BDNF', 'AKT1S1', 'DEPTOR', 'TSC2', 'RPTOR'}, number: 7
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'DNM1', 'SHC1', 'AP2M1', 'AP2A1', 'PLCG1', 'PRKCA'}, number: 6
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'SLC6A1'}, number: 2
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PLCB1', 'SLC6A1', 'CAMK2B', 'AKT1S1', 'PRKCA', 'DEPTOR', 'TSC2', 'RPTOR'}, number: 8
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'SLC6A1', 'SHC1'}, number: 3
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PLCB1', 'SLC6A1', 'PRKCA', 'TSC2', 'RPTOR'}, number: 5
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1S1', 'TSC2', 'PPP2R5B', 'RPTOR'}, number: 4
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BDNF', 'AKT1S1', 'PPP2R5B', 'PRKCA', 'TSC2', 'RPTOR'}, number: 6
Term: Fragile X Syndrome WP4549, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1', 'SLC16A1'}, number: 2
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'PRKCZ', 'HRAS'}, number: 3
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'HRAS'}, number: 2
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GNB1', 'HRAS'}, number: 2
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'GNB1', 'PRKCA', 'HRAS'}, number: 3
Term: G Protein Signaling WP35, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'BMP4'}, number: 1
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'BMP4'}, number: 1
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'CDKN1A'}, number: 2
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4'}, number: 1
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4', 'PPARG'}, number: 3
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4', 'CDKN1B', 'BCL2L11'}, number: 4
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4'}, number: 2
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A4', 'CDKN1A', 'CDKN1B', 'VEGFA', 'PPARG'}, number: 5
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'CDKN1A', 'CDKN1B', 'VEGFA', 'BCL2L11'}, number: 5
Term: Galanin Receptor Pathway WP4970, 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/1090, 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/1457, 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/1917, 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): {'NOTCH1', 'AURKA', 'E2F7'}, number: 3
Term: Gastric Cancer Network 1 WP2361, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
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/288, 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/68, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'FGFR2', 'PDGFRB', 'KDR'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'FGFR2', 'PDGFRB', 'KDR'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'FGFR2', 'PDGFRB', 'KDR'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'TP53', 'CCND2', 'BRCA1', 'CDKN1A', 'AKT3', 'PDGFRB', 'HRAS', 'MDM2', 'MET', 'TSC2', 'MAP2K6'}, number: 13
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/1457, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'SPRY2', 'PRKCZ', 'PLCG1', 'PRKCA', 'HRAS', 'PIK3R1', 'PIK3C2B'}, number: 8
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/209, Title of overlapping gene(s): {'BRCA2', 'CCND2', 'PRKCA', 'CDKN1A', 'BRCA1', 'TSC2'}, number: 6
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'CCND2', 'PRKCA', 'BRCA1', 'AKT3', 'CDKN1A', 'HRAS', 'CDKN1B', 'MDM2', 'PIK3R1', 'PIK3C2B'}, number: 11
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'PRKCA', 'CDKN1A', 'TSC2', 'PIK3R1'}, number: 5
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'CDKN1A', 'AKT3', 'PDGFRB', 'HRAS', 'CDKN1B', 'MDM2', 'TSC2', 'MET', 'PIK3R1', 'PIK3C2B'}, number: 12
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'TP53', 'CCND2', 'PRKCA', 'BRCA1', 'AKT3', 'CDKN1A', 'HRAS', 'PDGFRB', 'CDKN1B', 'TSC2', 'MDM2', 'PIK3R1', 'MET', 'PIK3C2B'}, number: 16
Term: Glioblastoma Signaling WP2261, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'TGFBR3'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1457, 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/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'RXRA'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'NFKB2', 'RXRA'}, number: 3
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'RXRA'}, number: 2
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/484, 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: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/1457, 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/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/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/214, Title of overlapping gene(s): set(), number: 0
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Glucose Metabolism In Triple Negative Breast Cancer Cells WP5211, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
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/68, Title of overlapping gene(s): {'SLC2A1', 'LDHA', 'SLC16A1'}, number: 3
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT2B7', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT2B7', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT2B7', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 4
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT2B7', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'UGDH'}, number: 1
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PLD1'}, number: 1
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PNPLA3'}, number: 1
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Glycerolipids And Glycerophospholipids WP4722, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Glycosaminoglycan Synthesis In Fibroblasts WP5395, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'DKK1', 'JUN', 'FZD1', 'KITLG', 'CCN2', 'WNT5A'}, number: 7
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'FST', 'BMP4'}, number: 3
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'FOSB', 'JUN', 'EGFR'}, number: 3
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1', 'JUN', 'FZD1', 'NOTCH1', 'WNT5A'}, number: 5
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'WNT5A'}, number: 2
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'BMP4', 'NR3C1', 'FZD1', 'KITLG'}, number: 5
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'KITLG'}, number: 2
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, 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/1090, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'TP53', 'CDKN1A', 'AKT3', 'AJUBA', 'HRAS', 'VEGFA', 'TSC2', 'RPTOR'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR2', 'HRAS'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1457, 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): {'EGFR', 'PIK3R1', 'HRAS'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'KEAP1', 'NFE2L2', 'TGFBR2'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'KEAP1', 'NFE2L2', 'CDKN1A', 'SESN1', 'TGFBR2', 'NOTCH1', 'TSC2', 'DDIT4', 'RPTOR'}, number: 9
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'KEAP1', 'NFKB2', 'NFE2L2', 'CDKN1A', 'AKT3', 'SESN1', 'HRAS', 'TGFBR2', 'PIK3R1'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TP53', 'KEAP1', 'NFE2L2', 'CDKN1A', 'TGFBR2', 'TSC2', 'PIK3R1', 'RPTOR'}, number: 8
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'PIK3R1', 'CDKN1A', 'AKT3', 'HRAS', 'VEGFA', 'TSC2', 'DDIT4', 'RPTOR'}, number: 10
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'FGFR2', 'TP53', 'PIK3R1', 'CDKN1A', 'AKT3', 'HRAS', 'VEGFA', 'TSC2', 'DDIT4', 'RPTOR'}, number: 11
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LATS2', 'ITGB2', 'CD44', 'CDH17', 'HRAS', 'ITGA6', 'CDH1', 'ITGA1', 'CTNNA1', 'FOXM1', 'AMOT', 'EGFR', 'FGFR2', 'PAK2', 'CDH6', 'PDGFRB', 'CDH16', 'CDH18', 'KDR', 'ITGB3', 'VGLL4', 'WWTR1', 'CCN2', 'AJUBA', 'ITGB4', 'CDH10', 'MET'}, number: 27
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'ITGB6', 'HRAS'}, number: 2
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH6', 'CDH1', 'CDH16'}, number: 3
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'HRAS'}, number: 2
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1917, 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): {'DDB1'}, number: 1
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'ITGB3', 'FGFR2', 'ITGB6', 'CTNNA1', 'ITGA5', 'ITGB2', 'WWTR1', 'ITGB8', 'PDGFRB', 'ITGB4', 'HRAS', 'ITGA11', 'MET', 'ITGA6', 'KDR'}, number: 16
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'ITGA1', 'FGFR2', 'ITGB3', 'ITGB6', 'ITGA5', 'ITGB2', 'ITGB8', 'PDGFRB', 'ITGB4', 'HRAS', 'ITGA11', 'MET', 'ITGA6', 'KDR'}, number: 15
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'RPS6KA1', 'BCL2', 'BDNF', 'CCND2', 'PPARGC1A'}, number: 5
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'RPS6KA1'}, number: 2
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2B', 'CCND2', 'PRKCA'}, number: 3
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'CCND2', 'PRKCA'}, number: 3
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PPARGC1A'}, number: 2
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'BDNF', 'CCND2', 'PRKCA', 'PPARGC1A'}, number: 5
Term: Hippocampal Synaptogenesis And Neurogenesis WP5231, 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/1090, Title of overlapping gene(s): {'VEGFA', 'HBEGF', 'ATF3'}, number: 3
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Hypertrophy Model WP516, KEID: https://identifiers.org/aop.events/1457, 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/1917, Title of overlapping gene(s): {'HBEGF'}, number: 1
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/214, Title of overlapping gene(s): set(), number: 0
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/288, Title of overlapping gene(s): set(), number: 0
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/68, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'SHC1'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'RUNX2', 'SERPINE1', 'TGFBR2'}, number: 6
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'SHC1'}, number: 1
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/209, Title of overlapping gene(s): {'SERPINE1', 'TGFBR2'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TGFBR2', 'SHC1'}, number: 3
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/288, 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): {'SMAD3', 'SERPINE1'}, number: 2
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/68, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
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/1917, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ICAM1', 'HBEGF'}, number: 2
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HBEGF'}, number: 1
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: IL1 And Megakaryocytes In Obesity WP2865, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LAMB1', 'FN1'}, number: 2
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'FN1'}, number: 1
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMB1', 'VTN', 'COL3A1', 'FN1', 'THBS1', 'COL1A1'}, number: 6
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMB1', 'VTN', 'COL3A1', 'FN1', 'THBS1', 'COL1A1'}, number: 6
Term: Inflammatory Response Pathway WP453, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'ITGA1', 'SHC1', 'PAK2', 'ITGB2', 'AKT3', 'ITGB4', 'HRAS', 'ITGA6', 'MAP2K6'}, number: 10
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'ITGB6', 'HRAS'}, number: 2
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'SHC1', 'CAV2', 'CAV1', 'HRAS', 'CSK'}, number: 5
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SORBS1', 'ROCK2'}, number: 2
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT3', 'SHC1', 'HRAS'}, number: 3
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'ITGB6', 'ITGB2', 'ITGB8', 'AKT3', 'ITGB4', 'HRAS', 'ITGA11', 'ITGA6', 'ITGA5'}, number: 10
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'ITGA1', 'ITGB6', 'ITGB2', 'ITGB8', 'AKT3', 'ITGB4', 'HRAS', 'ITGA11', 'ITGA6', 'ITGA5'}, number: 11
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CES2', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CES2', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CES2', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A9', 'UGT1A1', 'SLCO1B1'}, number: 3
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CES2', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'FTH1', 'FTL'}, number: 2
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FTH1', 'FTL'}, number: 2
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FTH1', 'FTL'}, number: 2
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'FTH1', 'FTL'}, number: 2
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Iron Metabolism Disorders WP5172, 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/1090, Title of overlapping gene(s): {'AKT1S1', 'CCND2', 'AKT3', 'HRAS', 'FOXM1', 'RPTOR'}, number: 6
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/1457, 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): {'JAK2', 'HRAS'}, 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/209, Title of overlapping gene(s): {'AKT1S1', 'CCND2', 'RPTOR'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/214, 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/244, Title of overlapping gene(s): {'CCND2', 'AKT3', 'HRAS'}, number: 3
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/288, 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/41, Title of overlapping gene(s): {'RPTOR'}, 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): {'PRLR', 'AKT1S1', 'AKT3', 'HRAS', 'JAK2', 'GHR', 'RPTOR'}, number: 7
Term: JAK STAT Signaling In The Regulation Of Beta Cells WP5358, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRLR', 'AKT1S1', 'CCND2', 'AKT3', 'HRAS', 'JAK2', 'GHR', 'RPTOR'}, number: 8
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: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'TGFBR2'}, number: 2
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/68, 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/1271, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/1457, 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/1917, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Lactate Shuttle In Glial Cells WP5314, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1', 'LDHA', 'SLC16A1'}, number: 3
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN1A', 'HRAS', 'TP53'}, number: 3
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'HRAS', 'TP53'}, number: 3
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'TP53'}, number: 2
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A', 'HRAS'}, number: 2
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A', 'HRAS', 'TP53'}, number: 3
Term: Lipid Metabolism In Senescent Cells WP5149, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HGF', 'TGFA', 'MMP2', 'FGF1', 'CCN2'}, number: 5
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD7', 'SPP1'}, number: 2
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'NFE2L2', 'TGFA'}, number: 3
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'NFE2L2', 'TGFA'}, number: 3
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'NFE2L2', 'TGFA'}, number: 3
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'NFE2L2', 'TGFA'}, number: 3
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HGF', 'FGF1', 'SPP1'}, number: 3
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HGF', 'TGFA', 'FGF1', 'SPP1'}, number: 4
Term: Lung Fibrosis WP3624, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ACTA2', 'PDGFRB', 'WNT5A', 'KDR'}, number: 4
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD5', 'BMP4'}, number: 2
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'WNT5A'}, number: 2
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HNF4A'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'BMP4', 'TNC', 'PDGFRB', 'RARA', 'KDR'}, number: 5
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PDGFRB', 'KDR', 'TNC'}, number: 3
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A6', 'GSR', 'CYP2A6', 'UGT1A7', 'GSTA2', 'UGT1A9', 'GPX3', 'GSTA4', 'UGT1A4', 'UGT2B7', 'UGT1A1'}, number: 11
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'UGT1A6', 'CYP7A1', 'GSR', 'CYP2A6', 'UGT1A7', 'GSTA2', 'CYP1A1', 'UGT1A9', 'GPX3', 'GSTA4', 'UGT1A4', 'UGT2B7', 'CYP27A1', 'UGT1A1'}, number: 15
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'BAAT'}, number: 3
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A6', 'GSR', 'CYP2A6', 'UGT1A7', 'GSTA2', 'UGT1A9', 'GPX3', 'GSTA4', 'UGT1A4', 'UGT2B7', 'UGT1A1'}, number: 11
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP8B1', 'CYP7A1', 'CYP2A6', 'GSTA2', 'CYP2C19', 'UGT1A9', 'UGT1A6', 'BAAT', 'UGT1A4', 'UGT1A1'}, number: 11
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'UGT1A6', 'CYP7A1', 'GSR', 'CYP2A6', 'UGT1A7', 'GSTA2', 'UGT1A9', 'GPX3', 'GSTA4', 'UGT1A4', 'UGT2B7', 'BAAT', 'UGT1A1'}, number: 14
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP26B1', 'CYP2B6', 'CYP7A1', 'CYP27A1'}, number: 4
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'TSC2'}, number: 2
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC6A1'}, number: 1
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TSC2', 'CDC25C', 'SLC6A1'}, number: 3
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDC25C', 'SLC6A1'}, number: 2
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC2', 'SLC6A1'}, number: 2
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'TSC2'}, number: 2
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'TSC2'}, number: 2
Term: Monoamine Transport WP727, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ACTB', 'ACTG1', 'JUN', 'ACTA2', 'ATF3'}, number: 5
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'GJA1', 'JUN', 'PRKCZ', 'PLCG1', 'PRKCA'}, number: 5
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAFF', 'PRKCA'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'JUN', 'CAMK2B', 'PRKCA', 'MAFF'}, number: 5
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFF', 'PRKCA', 'JUN'}, number: 3
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MAFF', 'PRKCA'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GNB1'}, number: 1
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'GNB1', 'PRKCA'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'BCL2', 'SUZ12', 'MAP3K2', 'MAP3K1'}, number: 5
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/1457, 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', 'PCNA', 'MAP3K2', 'CFL1', 'MAP3K1'}, number: 5
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/209, Title of overlapping gene(s): {'ROCK2', 'USP1', 'RFC3', 'PCNA'}, number: 4
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'CCNE2', 'MAP3K1'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
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): {'EGFR'}, number: 1
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'CCNE2', 'BCL2'}, number: 3
Term: NF1 Copy Number Variation Syndrome WP5366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'ITGA1'}, number: 2
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1'}, number: 1
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'ITGA1'}, number: 2
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HGF', 'TGFA', 'FGF13', 'SLC2A1', 'HBEGF'}, number: 5
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/1457, Title of overlapping gene(s): set(), number: 0
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/1917, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'UGT1A4', 'SLC2A4', 'CYP2A6', 'SLC2A2', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'PGD', 'NRG1', 'SLC6A6', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 46
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'UGT1A4', 'SLC2A4', 'CYP2A6', 'SLC2A2', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'PGD', 'NRG1', 'SLC6A6', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 46
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'RXRA'}, number: 2
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'UGT1A4', 'SLC2A4', 'CYP2A6', 'SLC2A2', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'PGD', 'NRG1', 'SLC6A6', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 46
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 8
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'UGT1A4', 'SLC2A4', 'CYP2A6', 'SLC2A2', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'PGD', 'NRG1', 'SLC6A6', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 46
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HGF', 'SLC2A4', 'SLC2A2', 'FGF13', 'RXRA', 'SLC2A1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HGF', 'SLC2A4', 'TGFA', 'SLC2A2', 'FGF13', 'SLC2A1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'HGF', 'MMP2', 'CCN2', 'AKT3', 'MET', 'VEGFA', 'KDR'}, number: 8
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR2', 'TGFBR3'}, number: 4
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'TGFBR2'}, number: 2
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'TGFBR2'}, number: 2
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'SMAD3', 'NFKB2', 'CCNE2', 'AKT3', 'CDKN1B', 'TGFBR2'}, number: 7
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'TGFBR2'}, number: 2
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'HGF', 'SMAD3', 'AKT3', 'CDKN1B', 'MET', 'VEGFA', 'COL1A1', 'KDR'}, number: 9
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'HGF', 'CCNE2', 'AKT3', 'CDKN1B', 'MET', 'VEGFA', 'COL1A1', 'KDR'}, number: 9
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'KDR', 'KITLG'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SMAD5', 'SMAD9'}, number: 4
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'NFKB2'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'KDR', 'KITLG'}, number: 3
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'KDR', 'KITLG'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PODXL', 'ITGB4'}, number: 2
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PLCE1'}, number: 1
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB4', 'LMNA'}, number: 2
Term: Nephrotic Syndrome WP4758, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB4'}, number: 1
Term: Nephrotic Syndrome WP4758, 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/1090, Title of overlapping gene(s): {'ACTB', 'ACTG1', 'JUN', 'FN1', 'AKT1S1', 'DEPTOR', 'RPTOR'}, number: 7
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'SERPINE1', 'SMAD5', 'TGFBR2'}, number: 4
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'FN1'}, number: 1
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JAK2', 'JUN'}, number: 2
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TP53I3', 'JUN', 'AKT1S1', 'DEPTOR', 'SERPINE1', 'TGFBR2', 'DDIT4', 'APOA2', 'RPTOR'}, number: 9
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK1', 'JUN', 'NFKB2', 'TGFBR2'}, number: 4
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2', 'RPTOR'}, number: 2
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IRF3', 'RPTOR', 'FN1', 'AKT1S1', 'SERPINE1', 'JAK2', 'DDIT4', 'IKBKG'}, number: 8
Term: Network Map Of SARS CoV 2 Signaling WP5115, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'RPTOR', 'FN1', 'AKT1S1', 'JAK2', 'DDIT4', 'IKBKG'}, number: 6
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: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BDNF'}, number: 1
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'ID1'}, number: 1
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NRG1'}, number: 1
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NRG1', 'NOTCH1'}, number: 2
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NRG1'}, number: 1
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NRG1'}, number: 1
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BDNF'}, number: 1
Term: Neurogenesis Regulation In The Olfactory Epithelium WP5265, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'BDNF', 'SLC2A1'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'SMAD7', 'TGFBR2'}, number: 5
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'CFL1'}, number: 2
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'TGFBR2', 'SLC2A1'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'CAMK2B', 'PRKCA', 'TGFBR2', 'GLS2', 'SLC2A1', 'PLCB1'}, number: 7
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'BCL2', 'NFKB2', 'PRKCA', 'TGFBR2', 'SLC2A1'}, number: 6
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PLCB1', 'PRKCA', 'TGFBR2', 'SLC2A1'}, number: 4
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SLC2A1'}, number: 2
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'PRKCA', 'BDNF', 'SLC2A1'}, number: 4
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'GLS', 'SLC2A1'}, number: 2
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAOA'}, number: 1
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Neurotransmitter Disorders WP4220, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'UGT1A9', 'UGT1A4'}, number: 3
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'UGT1A9', 'UGT1A4'}, number: 3
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'UGT1A9', 'UGT1A4'}, number: 3
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2A6', 'CYP2B6', 'UGT1A9', 'UGT1A4'}, number: 4
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'UGT1A9', 'UGT1A4'}, number: 3
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6'}, number: 1
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, 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/1090, Title of overlapping gene(s): {'JUN', 'HRAS'}, 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', 'HRAS'}, number: 2
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'CAV1', 'PRKCZ', 'PRKCA', 'HRAS', 'PLCE1'}, number: 6
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'RXRA'}, number: 2
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'JUN', 'CAMK2B', 'PRKCA', 'RXRA', 'PLCB1', 'ISG15'}, number: 7
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'NFKB2', 'PRKCA', 'RXRA', 'HRAS'}, number: 5
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PLCB1', 'PRKCA', 'RXRA'}, number: 3
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'STAT2', 'IFNAR2', 'RXRA', 'HRAS'}, number: 4
Term: Non Genomic Actions Of 1 25 Dihydroxyvitamin D3 WP4341, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'IFNAR2', 'HRAS'}, number: 3
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: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC3', 'CYP4A11'}, number: 2
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP4A11', 'PPARG', 'ABCC3'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'NR1H4', 'CYP8B1', 'CYP7A1'}, number: 4
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC3', 'CYP4A11'}, number: 2
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP8B1', 'CYP7A1', 'NR1H4', 'ABCC3'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP4A11', 'NR1H4', 'ABCC3'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1', 'ABCA1', 'RARA', 'PPARG'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/68, 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): {'HGF', 'EGFR', 'TGFA', 'JUN', 'SLC7A5', 'FGF13', 'SLC2A1', 'HBEGF', 'PPARGC1A'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'TGFBR2', 'TGFBR3'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN', 'JUND'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A4', 'MAFF', 'UGT1A6', 'SLC2A6', 'SLC2A4', 'CYP2A6', 'SLC2A2', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'SLC6A6', 'PGD', 'NRG1', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 46
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'CYP1A1', 'FTL', 'PLTP', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A4', 'MAFF', 'UGT1A6', 'SLC2A6', 'APOA2', 'SLC2A4', 'CYP8B1', 'CYP7A1', 'CYP2A6', 'JUN', 'DBI', 'SLC2A2', 'PCK1', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'SLC6A6', 'PGD', 'NRG1', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 54
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'IP6K3', 'CYP7A1', 'RXRA', 'BAAT', 'NR1H4', 'ABCC3', 'IRS2', 'PPARGC1A'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A4', 'MAFF', 'SMC1A', 'UGT1A6', 'SLC2A6', 'SLC2A4', 'CYP2A6', 'JUN', 'SLC2A2', 'NFKB2', 'ABCC3', 'MAFG', 'UGT1A1', 'CDK1', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'SLC6A6', 'PGD', 'NRG1', 'EPHA3', 'UGT1A9', 'CDKN1B', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 51
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'IP6K3', 'CYP2C19', 'RXRA', 'UGT1A6', 'UGT1A4', 'IRS2', 'CYP8B1', 'CYP7A1', 'CYP2A6', 'NR1H4', 'ABCC3', 'UGT1A1', 'PPARGC1A', 'GSTA2', 'NRIP1', 'UGT1A9', 'BAAT', 'SLCO1B1'}, number: 19
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'IP6K3', 'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'FTH1', 'RXRA', 'GPX3', 'UGT1A4', 'MAFF', 'UGT1A6', 'SLC2A6', 'IRS2', 'SLC2A4', 'CYP8B1', 'CYP7A1', 'CYP2A6', 'SLC2A2', 'NR1H4', 'ABCC3', 'MAFG', 'UGT1A1', 'PPARGC1A', 'GCLM', 'SLC6A1', 'TGFA', 'UGT1A7', 'GSTA2', 'SLC6A6', 'PGD', 'NRG1', 'EPHA3', 'UGT1A9', 'GSTA4', 'SLC2A1', 'UGT2B7', 'CES2', 'HBEGF', 'BAAT', 'GSR', 'HGF', 'CES4A', 'KEAP1', 'TXN', 'ALDH3A1', 'FGF13', 'CYP4A11', 'SLC2A8', 'SLC39A13', 'TGFBR2', 'SLC6A15', 'SLC7A11'}, number: 53
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'HGF', 'CYP2B6', 'SLC2A4', 'CYP7A1', 'NR3C1', 'SLC2A2', 'PCK1', 'NRIP1', 'FGF13', 'RXRA', 'CDKN1B', 'SLC2A1', 'IRS2', 'PPARGC1A'}, number: 15
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'HGF', 'SLC2A4', 'TGFA', 'SLC2A2', 'PCK1', 'FGF13', 'CDKN1B', 'SLC2A1', 'IRS2', 'PPARGC1A'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR2', 'JUN', 'CCN2', 'AKT3', 'VEGFA', 'FOSL1', 'KDR'}, number: 7
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'RUNX2', 'SPP1'}, number: 3
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'FOSB', 'JUN', 'PRKCA', 'JUND', 'JAK2'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'PRKCA', 'FOSL1'}, number: 3
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'PRKCA', 'AKT3', 'FOSL1'}, number: 4
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGFR2', 'VEGFA', 'EPAS1', 'COL3A1', 'AKT3', 'SPP1', 'JAK2', 'COL1A1', 'KDR'}, number: 9
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR2', 'VEGFA', 'EPAS1', 'COL3A1', 'PRKCA', 'AKT3', 'SPP1', 'JAK2', 'COL1A1', 'KDR'}, number: 10
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGFR2', 'WNT7B', 'LRP5', 'WNT6', 'FZD1', 'FZD7', 'FGF1', 'WNT5A'}, number: 8
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD9', 'SMAD5', 'RUNX2', 'BMP4'}, number: 4
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PRKCZ', 'PIK3C2B'}, number: 4
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'WNT7B', 'LRP5', 'FZD1', 'WNT6', 'FZD7', 'PRKCA', 'NOTCH1', 'PPARG', 'WNT5A'}, number: 9
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT7B', 'WNT6', 'PRKCA', 'PIK3R1', 'WNT5A', 'PIK3C2B'}, number: 6
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGFR2', 'BMP4', 'FZD1', 'FGF1', 'PPARG', 'PIK3R1', 'PIK3C2B'}, number: 7
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGFR2', 'FGF1', 'PRKCA', 'PIK3R1', 'PIK3C2B'}, number: 5
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND2', 'TSC2'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND2', 'TSC2'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND2', 'SMAD3', 'CDKN1B'}, number: 3
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'NRIP1'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TSC2'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'PRLR', 'NRIP1', 'CDKN1B', 'TSC2'}, number: 5
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TSC2', 'CCND2', 'CDKN1B', 'PRLR'}, number: 4
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'LAMA3', 'AKT3', 'FN1'}, number: 4
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'FN1'}, number: 1
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'AKT3'}, number: 2
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMA3', 'AKT3', 'FN1'}, number: 3
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'LAMA3', 'AKT3', 'FN1'}, number: 4
Term: Overview Of Nanoparticle Effects WP3287, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'AREG'}, number: 2
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SPP1'}, number: 1
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CX3CL1'}, number: 1
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'SPP1'}, number: 2
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'SPP1'}, number: 2
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'CYP4A11'}, number: 2
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP2A6', 'CYP1A1', 'CYP4A11', 'CYP27A1'}, number: 6
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'CYP4A11'}, number: 2
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP8B1', 'CYP7A1', 'CYP2A6', 'CYP2C19'}, number: 5
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'CYP8B1', 'CYP7A1', 'CYP4A11'}, number: 4
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP26B1', 'CYP2B6', 'CYP7A1', 'CYP27A1'}, number: 4
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, 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/1090, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'MAP3K1'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'GADD45A', 'PCNA'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'GADD45A', 'CDKN1B', 'MAP3K1'}, number: 5
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
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): {'CDKN1A', 'GADD45A', 'CDKN1B'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Oxidative Damage Response WP3941, 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/1090, Title of overlapping gene(s): {'AKT1S1', 'DEPTOR', 'CDKN1A', 'SLC2A1', 'TSC2', 'RPTOR'}, number: 6
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1', 'SERPINE1'}, number: 2
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/1539, Title of overlapping gene(s): {'AURKA', 'PCNA'}, number: 2
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/209, Title of overlapping gene(s): {'AURKA', 'ACAD11', 'FANCC', 'ZMAT3', 'GLS2', 'DDIT4', 'PML', 'E2F7', 'CDC25C', 'NCF2', 'AKT1S1', 'ISG15', 'PCNA', 'FUCA1', 'TP53I3', 'CDKN1A', 'SERPINE1', 'ICAM1', 'SESN1', 'SLC2A1', 'NOTCH1', 'CX3CL1', 'ADORA2B', 'THBS1', 'DEPTOR', 'GADD45A', 'DDB2', 'TSC2', 'MSH2', 'SLC7A11', 'TP53INP1', 'RPTOR'}, number: 32
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PML', 'CDC25C', 'SESN1', 'CDKN1A', 'GADD45A', 'DDB2', 'SLC2A1', 'SLC7A11'}, number: 8
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'SLC2A1', 'TSC2', 'SLC7A11', 'RPTOR'}, number: 5
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT1S1', 'THBS1', 'CDKN1A', 'SERPINE1', 'GADD45A', 'SLC2A1', 'TSC2', 'DDIT4', 'RPTOR'}, number: 9
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT1S1', 'THBS1', 'CDKN1A', 'SLC2A1', 'TSC2', 'DDIT4', 'RPTOR'}, number: 7
Term: P53 Transcriptional Gene Network WP4963, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PDGFD', 'TP53', 'FN1', 'CCND2', 'BRCA1', 'HRAS', 'ITGA6', 'LAMA1', 'ITGA1', 'FGF14', 'BDNF', 'AKT3', 'COL4A6', 'EGFR', 'FGFR2', 'TGFA', 'BCL2', 'FGF12', 'CDKN1A', 'PDGFRB', 'EFNA5', 'VEGFA', 'KDR', 'ITGB3', 'HGF', 'LAMB1', 'FGF13', 'KITLG', 'FGF1', 'LAMA2', 'LAMA3', 'ITGB4', 'MET', 'MDM2', 'TSC2', 'RPTOR'}, number: 36
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1', 'SPP1', 'ITGB6', 'HRAS'}, number: 4
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'TNC', 'FN1'}, number: 2
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'PRKCA', 'HRAS', 'JAK2', 'PIK3R1'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'HGF', 'FGF13'}, number: 4
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'TGFA', 'PCK1', 'FGF13', 'CCND2', 'BRCA1', 'PRKCA', 'CDKN1A', 'THBS1', 'TSC2', 'DDIT4', 'RPTOR'}, number: 12
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'TP53', 'TGFA', 'BCL2', 'FGF13', 'CCND2', 'BRCA1', 'PRKCA', 'AKT3', 'CDKN1A', 'HRAS', 'CDKN1B', 'CCNE2', 'MDM2', 'PIK3R1', 'BCL2L11'}, number: 16
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GYS1', 'HGF', 'TP53', 'TGFA', 'FGF13', 'PRKCA', 'CDKN1A', 'TSC2', 'PIK3R1', 'RPTOR'}, number: 10
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PDGFD', 'FN1', 'THBS2', 'HRAS', 'SPP1', 'JAK2', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'PPP2R2B', 'IKBKG', 'EIF4E2', 'VTN', 'FGF14', 'PCK1', 'PRLR', 'AKT3', 'COL4A6', 'EGFR', 'FGFR2', 'FGF12', 'ITGB8', 'CDKN1A', 'CHRM1', 'CDKN1B', 'PDGFRB', 'EFNA5', 'VEGFA', 'GNB1', 'PIK3R1', 'IFNAR2', 'KDR', 'ITGB3', 'GYS1', 'HGF', 'ITGB6', 'LAMB1', 'TNC', 'KITLG', 'FGF1', 'FGF13', 'LAMA2', 'LAMA3', 'THBS1', 'ITGB4', 'MET', 'TNXB', 'PPP2R5B', 'TSC2', 'ITGA5', 'MDM2', 'RPTOR'}, number: 55
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3AP1', 'PDGFD', 'TP53', 'FN1', 'THBS2', 'CCND2', 'BRCA1', 'PRKCA', 'HRAS', 'SPP1', 'JAK2', 'ITGA11', 'ITGA6', 'COL6A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'COL1A1', 'ITGA1', 'PPP2R2B', 'EIF4E2', 'VTN', 'FGF14', 'SGK1', 'PCK1', 'PRLR', 'BDNF', 'AKT3', 'COL4A6', 'EGFR', 'FGFR2', 'TGFA', 'BCL2', 'FGF12', 'ITGB8', 'CDKN1A', 'CHRM1', 'CDKN1B', 'PDGFRB', 'EFNA5', 'VEGFA', 'GNB1', 'SYK', 'PIK3R1', 'IFNAR2', 'KDR', 'ITGA5', 'ITGB3', 'GYS1', 'HGF', 'ITGB6', 'LAMB1', 'TNC', 'KITLG', 'FGF1', 'FGF13', 'CCNE2', 'LAMA2', 'LAMA3', 'ITGB4', 'MET', 'TNXB', 'THBS1', 'TSC2', 'PPP2R5B', 'MDM2', 'BCL2L11', 'RPTOR'}, number: 69
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AREG', 'CDH17', 'SLC2A1'}, number: 3
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, 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/1090, Title of overlapping gene(s): {'EGFR', 'TP53', 'BCL2', 'JUN', 'MMP2', 'CDKN1A', 'MAP3K5', 'HBEGF', 'MAP2K6'}, number: 9
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2', 'HBEGF'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'NFE2L2', 'CDKN1A', 'HBEGF'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'BCL2', 'JUN', 'NFE2L2', 'CDKN1A', 'HBEGF', 'BCL2L11'}, number: 7
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CCNA2', 'TP53', 'NFE2L2', 'CDKN1A', 'HBEGF'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'CDKN1A'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'TP53', 'BCL2', 'CDKN1A', 'BCL2L11'}, number: 5
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 HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TGFA', 'SLC2A1', 'VEGFA', 'TP53'}, number: 4
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/1457, 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/1917, Title of overlapping gene(s): {'TGFA', 'SLC2A1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'SERPINE1', 'SLC2A1'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFA', 'SLC2A1', 'TP53'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/288, 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): {'TGFA', 'SLC2A1', 'TP53'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'SERPINE1', 'SLC2A1'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA', 'SLC2A1', 'VEGFA', 'TP53'}, number: 4
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1', 'LDHA', 'SLC16A1'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EIF4G1', 'TP53', 'SLC7A5', 'CCND2', 'ITGA6', 'LAMA1', 'MAP2K6', 'CDH1', 'FGF14', 'AKT1S1', 'AKT3', 'RPS6KA1', 'TGFA', 'BCL2', 'CDH6', 'PDGFRB', 'MAPKAPK2', 'CDH18', 'HBEGF', 'KDR', 'TNIK', 'LAMB1', 'FZD7', 'RASSF4', 'DEPTOR', 'LAMA2', 'MET', 'CDH10', 'TSC2', 'MAP3K5', 'ATF3', 'LRP5', 'FN1', 'ITGB2', 'HMGB1', 'BRCA1', 'CDH17', 'MAP3K2', 'ACTG1', 'CTNNA1', 'ACTA2', 'SLC3A2', 'COL4A6', 'BARD1', 'PAK2', 'FZD1', 'FGF12', 'RASSF2', 'IL34', 'FOSL1', 'WNT5A', 'RBBP4', 'SUZ12', 'CCN2', 'LAMA3', 'MDM2', 'RASSF5', 'RASSF6', 'SHC1', 'PDGFD', 'LATS2', 'PODXL', 'CD44', 'HRAS', 'MAP3K1', 'ITGA1', 'FOXM1', 'AREG', 'EGFR', 'FGFR2', 'MMP2', 'CDKN1A', 'NDRG1', 'HGF', 'ITGB3', 'WWC1', 'MMP14', 'KITLG', 'AJUBA', 'ROR1', 'SFRP2', 'PRSS23', 'DKK1', 'ACTB', 'JUN', 'BDNF', 'PORCN', 'MAD2L1', 'AMOT', 'PPARGC1A', 'EZH2', 'WNT6', 'MOB1A', 'EFNA5', 'CDH16', 'MAP4K2', 'SLC2A1', 'VEGFA', 'KIF23', 'VGLL4', 'WNT7B', 'FGF13', 'WWTR1', 'FGF1', 'CIT', 'ITGB4', 'RPTOR'}, number: 107
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH6', 'CDH1', 'CDH16', 'FN1'}, number: 4
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'RPS6KA1', 'SHC1', 'JUN', 'HRAS', 'MAP3K2', 'MAP3K1'}, number: 7
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF', 'TGFA', 'FGF13', 'SLC2A1', 'HBEGF'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LRP5', 'HMGB1', 'CCND2', 'BRCA1', 'DKK1', 'JUN', 'AKT1S1', 'PORCN', 'TGFA', 'FZD1', 'WNT6', 'CDKN1A', 'SLC2A1', 'FOSL1', 'HBEGF', 'WNT5A', 'HGF', 'WNT7B', 'FZD7', 'FGF13', 'DEPTOR', 'ROR1', 'TSC2', 'SFRP2', 'RPTOR'}, number: 25
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'TP53', 'HMGB1', 'CCND2', 'BRCA1', 'HRAS', 'MAP3K1', 'JUN', 'AKT3', 'TGFA', 'BCL2', 'WNT6', 'CDKN1A', 'SLC2A1', 'FOSL1', 'HBEGF', 'WNT5A', 'HGF', 'WNT7B', 'FGF13', 'MDM2'}, number: 21
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF', 'TP53', 'TGFA', 'RPTOR', 'FGF13', 'CDKN1A', 'SLC2A1', 'TSC2', 'HBEGF', 'PPARGC1A'}, number: 10
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PDGFD', 'FN1', 'ITGB2', 'HRAS', 'ITGA6', 'LAMA1', 'CTNNA1', 'FGF14', 'AKT1S1', 'AKT3', 'COL4A6', 'PPARGC1A', 'EGFR', 'FGFR2', 'FZD1', 'FGF12', 'CDKN1A', 'PDGFRB', 'EFNA5', 'SLC2A1', 'VEGFA', 'KDR', 'HGF', 'ITGB3', 'LAMB1', 'FGF13', 'KITLG', 'WWTR1', 'FGF1', 'LAMA2', 'LAMA3', 'MET', 'MDM2', 'ITGB4', 'TSC2', 'RPTOR'}, number: 36
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'PDGFD', 'FN1', 'ITGB2', 'CCND2', 'BRCA1', 'HRAS', 'ITGA6', 'LAMA1', 'ITGA1', 'FGF14', 'BDNF', 'AKT1S1', 'AKT3', 'COL4A6', 'PPARGC1A', 'EGFR', 'FGFR2', 'TGFA', 'BCL2', 'FGF12', 'CDKN1A', 'PDGFRB', 'EFNA5', 'SLC2A1', 'VEGFA', 'KDR', 'HGF', 'ITGB3', 'LAMB1', 'FGF13', 'KITLG', 'FGF1', 'LAMA2', 'LAMA3', 'MET', 'MDM2', 'ITGB4', 'TSC2', 'RPTOR'}, number: 40
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HGF', 'DKK1', 'WNT7B', 'KITLG', 'FGF1', 'VEGFA', 'WNT5A'}, number: 7
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST', 'BMP4'}, number: 2
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'HGF'}, number: 1
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'HGF', 'DKK1', 'WNT7B', 'NOTCH1', 'WNT5A'}, number: 5
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'HGF', 'WNT5A', 'WNT7B'}, number: 3
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HGF'}, number: 1
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HGF', 'BMP4', 'KITLG', 'FGF1', 'VEGFA'}, number: 5
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HGF', 'KITLG', 'FGF1', 'VEGFA'}, number: 4
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'RXRA', 'PPARGC1A'}, number: 3
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'UGT1A9', 'RXRA', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP2A6', 'GSTA2', 'SLCO1B1', 'CYP2C19', 'NRIP1', 'UGT1A9', 'RXRA', 'UGT1A6', 'PPARGC1A', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 13
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'GSTA2', 'UGT1A9', 'RXRA', 'UGT1A6', 'PPARGC1A', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 9
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARGC1A', 'CYP2B6', 'RXRA', 'NRIP1'}, number: 4
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/68, 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): {'ITGB3', 'DKK1', 'LRP5', 'CDKN1A', 'PODXL', 'ITGB4'}, 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/1457, 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): {'PCNA', 'DNM1', 'PLCE1', 'PLCG1'}, number: 4
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/209, Title of overlapping gene(s): {'DKK1', 'PCNA', 'LRP5', 'CAMK2B', 'CDKN1A', 'NOTCH1'}, number: 6
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'VTN', 'CDKN1A', 'ITGB4', 'CDKN1B'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'VTN', 'CDKN1A', 'ITGB4', 'CDKN1B'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'PLCG1'}, number: 1
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MMP2', 'BDNF', 'BRCA1', 'TSC2', 'KDR'}, number: 5
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1', 'TGFBR2', 'TGFBR3'}, number: 3
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'CAV1'}, number: 1
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'BRCA2', 'EXO1', 'CYP7A1', 'FANCC', 'BRCA1', 'SERPINE1', 'TGFBR2', 'TSC2', 'ERCC6'}, number: 9
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BRCA1', 'TGFBR2'}, number: 2
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2', 'CYP7A1', 'TSC2'}, number: 3
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'LMNA', 'PRLR', 'SERPINE1', 'TSC2', 'KDR'}, number: 6
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BDNF', 'PRLR', 'BRCA1', 'TSC2', 'KDR'}, number: 5
Term: Primary Ovarian Insufficiency WP5316, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PPARG'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARG', 'PPARGC1A'}, number: 2
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, 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/1090, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1457, 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/1917, 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/214, 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/288, 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/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: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC2A1'}, number: 1
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/1271, Title of overlapping gene(s): set(), number: 0
Term: PtdIns 4 5 P2 In Cytokinesis Pathway WP5199, KEID: https://identifiers.org/aop.events/1457, 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/1917, 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/214, 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/288, 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/68, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ADORA2B'}, number: 1
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Purinergic Signaling WP4900, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'JUN'}, number: 2
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'KEAP1', 'MAFG', 'NFE2L2'}, number: 4
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'JUN', 'KEAP1', 'NFE2L2', 'MAFG'}, number: 5
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'JUN', 'KEAP1', 'NFE2L2', 'MAFG'}, number: 5
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2A6'}, number: 1
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'KEAP1', 'MAFG', 'NFE2L2'}, number: 4
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Quercetin And Nf kB AP 1 Induced Apoptosis WP2435, 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/1090, Title of overlapping gene(s): {'MAD2L1'}, number: 1
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/1457, 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/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/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/214, 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/288, 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/68, 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): {'BARD1', 'RBBP4', 'TP53', 'HMGB1', 'CDKN1A', 'MDM2'}, number: 6
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/1457, 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', 'PCNA'}, number: 2
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/209, Title of overlapping gene(s): {'PCNA', 'RPA1', 'HMGB1', 'CDKN1A', 'RFC3'}, number: 5
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK1', 'TP53', 'HMGB1', 'CCNE2', 'CDKN1A', 'CDKN1B', 'MDM2', 'SMC1A'}, number: 8
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/288, 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', 'TP53'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MDM2', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Retinoblastoma Gene In Cancer WP2446, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'CCNE2', 'CDKN1A', 'MDM2', 'CDKN1B'}, number: 5
Term: Retinoblastoma Gene In Cancer WP2446, 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/1090, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
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/1917, Title of overlapping gene(s): {'TXN', 'TXNRD1', 'GPX3', 'GSR'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'TXN', 'SERPINE1', 'ICAM1', 'GPX3', 'SOD1', 'GSR'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR', 'TXNRD1', 'TXN', 'NFKB2', 'GPX3', 'GSR'}, number: 6
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'TXNRD1', 'TXN', 'GPX3', 'SCARB1', 'GSR'}, number: 6
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1', 'ABCA1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, 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/1090, Title of overlapping gene(s): {'JUN', 'CDKN1A', 'RPS6KA1'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'RPS6KA1', 'RPS6KA2'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'CDKN1A'}, number: 2
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'CCNA2'}, number: 2
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Senescence Associated Secretory Phenotype SASP WP3391, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AKT3', 'PPARGC1A'}, number: 2
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'AKT3'}, number: 1
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'AKT3', 'PPARGC1A'}, number: 2
Term: Sildenafil Treatment WP5294, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'AKT3', 'PPARGC1A'}, number: 2
Term: Sildenafil Treatment WP5294, 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/1090, Title of overlapping gene(s): {'TP53', 'BCL2', 'LAMB1', 'FN1', 'LAMA2', 'CDKN1A', 'AKT3', 'LAMA3', 'COL4A6', 'ITGA6', 'LAMA1'}, number: 11
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/1457, Title of overlapping gene(s): {'FN1'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PIK3R1'}, number: 1
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/209, Title of overlapping gene(s): {'DDB2', 'CDKN1A', 'GADD45A', 'RXRA'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'BCL2', 'CCNE2', 'CDKN1A', 'AKT3', 'RXRA', 'CDKN1B', 'GADD45A', 'DDB2', 'PIK3R1'}, number: 10
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A', 'RXRA', 'TP53'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMB1', 'FN1', 'LAMA2', 'CDKN1A', 'AKT3', 'RXRA', 'COL4A6', 'CDKN1B', 'LAMA3', 'GADD45A', 'ITGA6', 'PIK3R1', 'LAMA1', 'IKBKG'}, number: 14
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TP53', 'BCL2', 'LAMB1', 'FN1', 'CCNE2', 'CDKN1A', 'AKT3', 'CDKN1B', 'COL4A6', 'LAMA2', 'LAMA3', 'ITGA6', 'PIK3R1', 'LAMA1', 'IKBKG'}, number: 15
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PLCB1', 'PRKCA', 'CDKN1A'}, number: 3
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'CDKN1A'}, number: 2
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PLCB1', 'PRKCA', 'CDKN1A'}, number: 3
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Sphingolipid Metabolism In Senescence WP5121, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'CDKN1A'}, number: 2
Term: Sphingolipid Metabolism In Senescence WP5121, 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/1090, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Sphingolipid Metabolism Integrated Pathway WP4726, KEID: https://identifiers.org/aop.events/1457, 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/1917, 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/214, 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/288, 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/68, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'EGFR', 'BDNF', 'TP53'}, number: 3
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'PRKCA', 'GJA1'}, number: 3
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'ICAM1', 'GADD45A', 'ROCK2'}, number: 4
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK1', 'TP53', 'PRKCA', 'GADD45A', 'CDKN1B'}, number: 5
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'TP53'}, number: 2
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EGFR', 'GADD45A', 'CDKN1B'}, number: 3
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'TP53', 'BDNF', 'PRKCA', 'CDKN1B'}, number: 5
Term: Spinal Cord Injury WP2431, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'APOA2', 'CYP7A1', 'LPL', 'PLTP'}, number: 4
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'ABCA1'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ACTA2', 'ACTG1'}, number: 2
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'BDNF', 'FOXM1', 'VEGFA', 'PPARGC1A'}, number: 5
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'GJA1'}, number: 2
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'MAOA'}, number: 2
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'NFKB2', 'TP73'}, number: 3
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'VEGFA', 'PPARGC1A'}, number: 3
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'BDNF', 'PPARGC1A'}, number: 3
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Synthesis Of Ceramides And 1 Deoxyceramides WP5194, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDH6', 'CDH1', 'CDH16', 'FN1'}, number: 4
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH1', 'SMAD3', 'FN1', 'TNC', 'ID1', 'CDH6', 'RUNX2', 'CDH16'}, number: 8
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'FN1', 'TNC'}, number: 3
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FN1', 'TNC'}, number: 2
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'TGFBR1', 'ITGB6', 'TGFBR3', 'BMP4', 'JUN', 'FST', 'TFE3', 'RUNX2', 'SMAD9', 'THBS1', 'SERPINE1', 'SMAD7', 'SMAD5', 'HRAS', 'SPP1', 'TGFBR2'}, number: 17
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'THBS1', 'SERPINE1', 'TGFBR2'}, number: 4
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'SMAD3', 'TGFBR2', 'HRAS'}, number: 4
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'ITGB6', 'BMP4', 'THBS1', 'SERPINE1', 'HRAS', 'SPP1'}, number: 7
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'THBS1', 'ITGB6', 'SPP1', 'HRAS'}, number: 4
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'ITGB6', 'TGFBR3', 'BMP4', 'JUN', 'FST', 'TFE3', 'RUNX2', 'SMAD9', 'THBS1', 'SERPINE1', 'SMAD5', 'TGFBR2', 'SMAD7', 'SPP1', 'HRAS'}, number: 17
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'JUN', 'THBS1', 'SERPINE1', 'TGFBR2'}, number: 4
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'JUN', 'SMAD3', 'TGFBR2', 'HRAS'}, number: 4
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'ITGB6', 'BMP4', 'THBS1', 'SERPINE1', 'SPP1', 'HRAS'}, number: 7
Term: TGF Beta Receptor Signaling WP560, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'THBS1', 'ITGB6', 'SPP1', 'HRAS'}, number: 4
Term: TGF Beta Receptor Signaling WP560, 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/1090, Title of overlapping gene(s): {'ITGB3', 'SHC1', 'TP53', 'PAK2', 'JUN', 'FN1', 'CDKN1A', 'ITGB4', 'MET', 'ATF3', 'MAP2K6'}, number: 11
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'TGFBR1', 'TGFBR3', 'JUN', 'RUNX2', 'THBS1', 'SMAD7', 'TGFBR2'}, number: 8
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'FN1', 'TNC', 'RUNX2'}, number: 4
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'MEF2A', 'SHC1', 'FOSB', 'JUN', 'CAV1', 'HGS', 'JUND', 'PIK3R1'}, number: 8
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PML', 'JUN', 'THBS1', 'CDKN1A', 'TGFBR2'}, number: 5
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDK1', 'SMAD3', 'PML', 'SHC1', 'TP53', 'JUN', 'CDKN1A', 'TGFBR2', 'PIK3R1'}, number: 9
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A', 'TGFBR2', 'TP53'}, number: 4
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'MEF2A', 'SMAD3', 'RBL1', 'FN1', 'TNC', 'THBS1', 'CDKN1A', 'ITGB4', 'MET', 'PIK3R1'}, number: 11
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'TP53', 'FN1', 'TNC', 'THBS1', 'CDKN1A', 'ITGB4', 'MET', 'PIK3R1'}, number: 9
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'WWTR1'}, number: 2
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'SERPINE1', 'TGFBR2'}, number: 5
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1', 'TGFBR2'}, number: 2
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TGFBR2'}, number: 2
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFBR2'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SERPINE1', 'WWTR1'}, number: 3
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, 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/1090, Title of overlapping gene(s): {'EGFR', 'CDH1', 'BCL2', 'JUN', 'FN1'}, number: 5
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN'}, number: 1
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH1', 'FN1'}, number: 2
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'EGFR', 'JUN', 'PRKCA', 'JAK2', 'PIK3R1'}, number: 5
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/209, Title of overlapping gene(s): {'NOTCH1', 'JUN', 'PRKCA'}, number: 3
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'JUN', 'PRKCA', 'CDKN1B', 'PIK3R1'}, number: 5
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
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): {'EGFR', 'FN1', 'CDKN1B', 'JAK2', 'ITGA5', 'PIK3R1'}, number: 6
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EGFR', 'BCL2', 'FN1', 'PRKCA', 'CDKN1B', 'JAK2', 'ITGA5', 'PIK3R1'}, number: 8
Term: TROP2 Regulatory Signaling WP5300, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'RPS6KA1', 'ITGB2'}, number: 2
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SPP1'}, number: 2
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'RPS6KA1'}, number: 1
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NCF2'}, number: 1
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SPP1', 'ITGB2'}, number: 2
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SPP1', 'ITGB2'}, number: 2
Term: TYROBP Causal Network In Microglia WP3945, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CYP2A6', 'UGT2B7', 'UGT1A4'}, number: 3
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP2A6', 'UGT2B7', 'CYP1A1', 'UGT1A4'}, number: 4
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CYP2A6', 'UGT2B7', 'UGT1A4'}, number: 3
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2A6', 'UGT1A4', 'CYP2C19'}, number: 3
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP2A6', 'UGT2B7', 'UGT1A4'}, number: 3
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'TP53', 'RPTOR', 'AKT1S1', 'AKT3', 'MDM2', 'HRAS', 'TSC2', 'PPARGC1A'}, number: 9
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'HRAS'}, number: 1
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TSC2', 'AKT1S1', 'RXRA', 'NOTCH1', 'PLCB1', 'PPARG', 'RPTOR'}, number: 7
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA', 'PPARGC1A'}, number: 2
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TP53', 'AKT3', 'MDM2', 'RXRA', 'HRAS'}, number: 5
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'RXRA', 'PPARGC1A'}, number: 2
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PLCB1', 'TP53', 'RPTOR', 'RXRA', 'TSC2', 'PPARGC1A'}, number: 6
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'RPTOR', 'AKT1S1', 'AKT3', 'RXRA', 'HRAS', 'MDM2', 'TSC2', 'PPARG', 'PPARGC1A'}, number: 10
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'TP53', 'RPTOR', 'AKT1S1', 'AKT3', 'MDM2', 'HRAS', 'TSC2', 'PPARGC1A'}, number: 9
Term: Thyroid Hormones And Peripheral Downstream Signaling Effects WP4746, 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/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/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/1457, 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/1917, Title of overlapping gene(s): {'GCLM', 'GPX3', 'GSR'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GSR', 'GCLM', 'GPX3', 'SOD1'}, number: 4
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'BAAT'}, number: 1
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'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'BAAT'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'BAAT', 'GCLM', 'GPX3', 'GSR'}, 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/68, Title of overlapping gene(s): set(), number: 0
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4', 'RXRA'}, number: 2
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PPARG', 'SLC2A4', 'RXRA'}, number: 3
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA', 'IRS2', 'PPARGC1A'}, number: 3
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'RXRA'}, number: 2
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A', 'RXRA', 'IRS2', 'NRIP1'}, number: 4
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A4', 'RXRA', 'IRS2', 'PPARGC1A'}, number: 4
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CEBPD', 'SLC2A4', 'NR3C1', 'NRIP1', 'RXRA', 'PPARG', 'IRS2', 'PPARGC1A'}, number: 8
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'IRS2', 'PPARGC1A'}, number: 3
Term: Transcription Factor Regulation In Adipogenesis WP3599, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'JAK2'}, number: 1
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ICAM1', 'ISG15'}, number: 2
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'JAK2', 'STAT2'}, number: 2
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'JAK2'}, number: 1
Term: Type II Interferon Signaling WP619, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, 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/1090, Title of overlapping gene(s): {'EIF4G1', 'SHC1', 'FN1', 'HMGB1', 'HRAS', 'MAP2K6', 'DKK1', 'ACTG1', 'CTNNA1', 'JUN', 'AKT1S1', 'AMOT', 'PAK2', 'BCL2', 'MMP2', 'NDRG1', 'VEGFA', 'MAPKAPK2', 'HBEGF', 'KDR', 'ITGB3', 'MMP14', 'CCN2', 'MDM2', 'MAP3K5'}, number: 25
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'JUN', 'HRAS'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'FN1'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): {'GJA1', 'SHC1', 'CSK', 'AP2A1', 'JUN', 'CAV1', 'PRKCZ', 'PLCG1', 'HGS', 'PRKCA', 'HRAS', 'PIK3R1', 'CFL1'}, number: 13
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'HBEGF', 'TXN', 'PGD'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1', 'JUN', 'TXN', 'ROCK2', 'NCF2', 'PGD', 'AKT1S1', 'HMGB1', 'PRKCA', 'ICAM1', 'HBEGF'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'BCL2', 'JUN', 'TXN', 'PGD', 'HMGB1', 'PRKCA', 'MDM2', 'HRAS', 'PIK3R1', 'HBEGF'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXN', 'PGD', 'PRKCA', 'PIK3R1', 'HBEGF'}, number: 5
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'CTNNA1', 'FN1', 'AKT1S1', 'MDM2', 'HRAS', 'TNXB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 10
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'BCL2', 'FN1', 'AKT1S1', 'PRKCA', 'MDM2', 'HRAS', 'TNXB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 11
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'P4HA2', 'LDHA', 'PLCG1'}, number: 3
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'RXRA', 'LPL'}, number: 2
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'SCARB1', 'RXRA'}, number: 2
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SCARB1', 'RXRA'}, number: 2
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP26B1', 'RXRA', 'LPL', 'RARA'}, number: 4
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Vitamin A And Carotenoid Metabolism WP716, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1', 'ICAM1', 'SOD1'}, number: 3
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR', 'NFKB2'}, number: 2
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1', 'ABCA1'}, number: 2
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Vitamin B12 Metabolism WP1533, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LRP5', 'CDKN1A', 'EFNA5'}, number: 3
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SPP1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'ID1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4', 'RXRA'}, number: 2
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A4', 'CYP7A1', 'LRP5', 'CYP1A1', 'CDKN1A', 'GADD45A', 'RXRA'}, number: 7
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP7A1', 'RXRA'}, number: 2
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'CDKN1A', 'GADD45A', 'CDKN1B', 'RXRA'}, number: 5
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1', 'RXRA', 'NRIP1'}, number: 4
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4', 'RXRA', 'CYP7A1'}, number: 4
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'SLC2A4', 'CYP7A1', 'NRIP1', 'CDKN1A', 'EFNA5', 'RXRA', 'SPP1', 'CDKN1B', 'GADD45A'}, number: 10
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'CDKN1A', 'EFNA5', 'CDKN1B', 'SPP1'}, number: 5
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2', 'RXRA', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFE2L2', 'RXRA', 'CYP27A1', 'GSR'}, number: 4
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'NFE2L2', 'RXRA', 'GSR'}, number: 4
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'RXRA'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NFE2L2', 'RXRA', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CHRM1', 'RXRA', 'CYP27A1'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'CHRM1'}, number: 2
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2', 'SLC7A5'}, number: 2
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'KEAP1', 'SLC7A11', 'NFE2L2'}, number: 3
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'KEAP1', 'SLC7A11', 'NFE2L2'}, number: 3
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'KEAP1', 'SLC7A11', 'NFE2L2'}, number: 3
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'KEAP1', 'SLC7A11', 'NFE2L2'}, number: 3
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/68, Title of overlapping gene(s): {'SLC1A5'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA1', 'FN1'}, number: 2
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1', 'ITGB6'}, number: 2
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'FN1'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1539, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'COL5A1', 'ITGB6', 'COL3A1', 'FN1', 'THBS2', 'THBS1', 'TNXB', 'ITGA11'}, number: 8
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL5A1', 'ITGA1', 'ITGB6', 'COL3A1', 'FN1', 'THBS2', 'THBS1', 'TNXB', 'ITGA11', 'COL6A1'}, number: 10
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/68, 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
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.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']
table1=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}"
table1.loc[:,'Percent geneset overlap']= table1.apply(calculate_Genesetoverlap_Score, axis=1)
table1
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Nuclear Receptors Meta Pathway WP2882 | 107 | https://identifiers.org/aop.events/1090 | {HGF, EGFR, TGFA, JUN, SLC7A5, FGF13, SLC2A1, ... | 9 | 8.411214953271028 |
1 | Nuclear Receptors Meta Pathway WP2882 | 107 | https://identifiers.org/aop.events/1271 | {JUN, TGFBR2, TGFBR3} | 3 | 2.803738317757009 |
2 | Nuclear Receptors Meta Pathway WP2882 | 107 | https://identifiers.org/aop.events/1457 | {} | 0 | 0.0 |
3 | Nuclear Receptors Meta Pathway WP2882 | 107 | https://identifiers.org/aop.events/1539 | {EGFR, JUN, JUND} | 3 | 2.803738317757009 |
4 | Nuclear Receptors Meta Pathway WP2882 | 107 | https://identifiers.org/aop.events/1917 | {TXNRD1, SRXN1, PTGR1, FTL, NFE2L2, FTH1, RXRA... | 46 | 42.99065420560748 |
... | ... | ... | ... | ... | ... | ... |
2062 | Pancreatic Cancer Subtypes WP5390 | 9 | https://identifiers.org/aop.events/288 | {} | 0 | 0.0 |
2063 | Pancreatic Cancer Subtypes WP5390 | 9 | https://identifiers.org/aop.events/41 | {SLC2A1} | 1 | 11.11111111111111 |
2064 | Pancreatic Cancer Subtypes WP5390 | 9 | https://identifiers.org/aop.events/457 | {SLC2A1} | 1 | 11.11111111111111 |
2065 | Pancreatic Cancer Subtypes WP5390 | 9 | https://identifiers.org/aop.events/484 | {SLC2A1} | 1 | 11.11111111111111 |
2066 | Pancreatic Cancer Subtypes WP5390 | 9 | https://identifiers.org/aop.events/68 | {SLC2A1} | 1 | 11.11111111111111 |
2067 rows × 6 columns
Section 6. Comparison 2: PCB concentration 2 (10nM)
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.
PCB2DEG= pd.read_csv('PCB concentration 2-GSE109565.top.table.tsv',sep='\t')
PCB2_DEG= PCB2DEG[PCB2DEG['padj'] < 0.05]
PCB2_DEG
GeneID | padj | pvalue | lfcSE | stat | log2FoldChange | baseMean | Symbol | Description | |
---|---|---|---|---|---|---|---|---|---|
0 | 1544 | 3.270000e-95 | 2.020000e-99 | 0.3816 | 21.164597 | 8.076617 | 5340.49 | CYP1A2 | cytochrome P450 family 1 subfamily A member 2 |
1 | 860 | 2.070000e-51 | 2.570000e-55 | 0.1072 | 15.666336 | 1.679040 | 437.13 | RUNX2 | RUNX family transcription factor 2 |
2 | 218 | 3.080000e-45 | 5.740000e-49 | 0.1315 | 14.707909 | 1.934003 | 6887.75 | ALDH3A1 | aldehyde dehydrogenase 3 family member A1 |
3 | 220 | 1.640000e-41 | 4.070000e-45 | 0.2124 | 14.095158 | 2.993965 | 103.37 | ALDH1A3 | aldehyde dehydrogenase 1 family member A3 |
4 | 54658 | 1.180000e-37 | 3.640000e-41 | 0.1259 | 13.437516 | 1.691207 | 2218.58 | UGT1A1 | UDP glucuronosyltransferase family 1 member A1 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1239 | 726 | 4.940000e-02 | 3.800000e-03 | 0.1305 | -2.894264 | -0.377841 | 296.47 | CAPN5 | calpain 5 |
1240 | 644815 | 4.940000e-02 | 3.800000e-03 | 0.0770 | 2.894280 | 0.222801 | 389.62 | FAM83G | family with sequence similarity 83 member G |
1241 | 79875 | 4.960000e-02 | 3.820000e-03 | 0.1258 | -2.892674 | -0.363914 | 510.86 | THSD4 | thrombospondin type 1 domain containing 4 |
1242 | 8792 | 4.960000e-02 | 3.820000e-03 | 0.2006 | 2.892321 | 0.580190 | 80.69 | TNFRSF11A | TNF receptor superfamily member 11a |
1243 | 79901 | 4.990000e-02 | 3.850000e-03 | 0.0825 | -2.890368 | -0.238591 | 797.43 | CYBRD1 | cytochrome b reductase 1 |
1244 rows × 9 columns
PCB_2_DEG = PCB2_DEG.copy()
PCB_2_DEG.rename(columns={PCB_2_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
PCB_2_DEG['Entrez.Gene'] = PCB_2_DEG['Entrez.Gene'].astype(str)
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_C2= pd.merge(mergeddataframe, PCB_2_DEG, on='Entrez.Gene')
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_C2.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['padj']
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: ")
The total number of significant genes:
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 | 8 |
https://identifiers.org/aop.events/875 | 16 |
https://identifiers.org/aop.events/2007 | 8 |
https://identifiers.org/aop.events/1495 | 16 |
https://identifiers.org/aop.events/1668 | 7 |
... | ... |
https://identifiers.org/aop.events/1820 | 4 |
https://identifiers.org/aop.events/896 | 2 |
https://identifiers.org/aop.events/1549 | 10 |
https://identifiers.org/aop.events/357 | 4 |
https://identifiers.org/aop.events/352 | 28 |
89 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 | 8 |
1 | https://identifiers.org/aop.events/875 | 16 |
2 | https://identifiers.org/aop.events/2007 | 8 |
3 | https://identifiers.org/aop.events/1495 | 16 |
4 | https://identifiers.org/aop.events/1668 | 7 |
... | ... | ... |
84 | https://identifiers.org/aop.events/1820 | 4 |
85 | https://identifiers.org/aop.events/896 | 2 |
86 | https://identifiers.org/aop.events/1549 | 10 |
87 | https://identifiers.org/aop.events/357 | 4 |
88 | https://identifiers.org/aop.events/352 | 28 |
89 rows × 2 columns
merged_dataframe2= 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(PCB2DEG.index)
B
16460
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.
PCB2DEG_filtered=PCB2DEG[PCB2DEG['padj'] < 0.05]
b=len(PCB2DEG_filtered)
b
1244
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_dataframe2.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([16460 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([1244 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 | 8 | 16460 | 1244 | 0.8205588374585608 |
1 | https://identifiers.org/aop.events/875 | 169 | 16 | 16460 | 1244 | 1.2526874560018266 |
2 | https://identifiers.org/aop.events/2007 | 184 | 8 | 16460 | 1244 | 0.5752830980008389 |
3 | https://identifiers.org/aop.events/1495 | 253 | 16 | 16460 | 1244 | 0.8367754152739474 |
4 | https://identifiers.org/aop.events/1668 | 156 | 7 | 16460 | 1244 | 0.593721658834199 |
... | ... | ... | ... | ... | ... | ... |
84 | https://identifiers.org/aop.events/1820 | 57 | 4 | 16460 | 1244 | 0.9285271055452136 |
85 | https://identifiers.org/aop.events/896 | 82 | 2 | 16460 | 1244 | 0.3227197866833974 |
86 | https://identifiers.org/aop.events/1549 | 101 | 10 | 16460 | 1244 | 1.3100506192098311 |
87 | https://identifiers.org/aop.events/357 | 21 | 4 | 16460 | 1244 | 2.520287857908437 |
88 | https://identifiers.org/aop.events/352 | 398 | 28 | 16460 | 1244 | 0.9308600882224629 |
89 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.120606 |
1 | 0.069270 |
2 | 0.028921 |
3 | 0.076836 |
4 | 0.044724 |
... | ... |
84 | 0.200448 |
85 | 0.035057 |
86 | 0.091701 |
87 | 0.051285 |
88 | 0.072693 |
89 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)]
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/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/1270')|(mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1487') |(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/457')|(mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/2006')| (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/1815')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/1944')| (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/1457')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/249')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/288')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/209')| (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/214')| (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/1090')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/344')]
significantKEIDgenetable2=significantKEID_genetable2.drop(columns={'WPtitle','ID'})
significantKEIDgenetable2
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 |
... | ... | ... | ... |
20202 | https://identifiers.org/aop.events/344 | TNF | 7124 |
20203 | https://identifiers.org/aop.events/344 | MMP9 | 4318 |
20204 | https://identifiers.org/aop.events/344 | TIMP2 | 7077 |
20205 | https://identifiers.org/aop.events/344 | MMP14 | 4323 |
20206 | https://identifiers.org/aop.events/344 | MMP2 | 4313 |
5818 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/GSE109565_ORApathwaytable/Comparison 2-PCB concentration 2.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 | Nuclear Receptors Meta Pathway WP2882 | 1.274958e-29 | 9.090451e-27 | 0 | 0 | 5.897351 | 392.362900 | CDKN1B;SRXN1;SLC2A1;IRS2;SLC7A11;SLC2A4;NR3C1;... |
1 | WikiPathways_2024_Human | NRF2 Pathway WP2884 | 1.026815e-13 | 3.660597e-11 | 0 | 0 | 5.941496 | 177.693200 | SRXN1;SLC2A1;TGFA;TXN;SLC2A4;SLC7A11;SLC2A6;UG... |
2 | WikiPathways_2024_Human | Pleural Mesothelioma WP5087 | 2.923317e-11 | 6.947750e-09 | 0 | 0 | 2.867939 | 69.563910 | CDKN1A;ITGB4;ITGB3;WWC1;SLC2A1;AREG;ACTB;ACTG1... |
3 | WikiPathways_2024_Human | Glucocorticoid Receptor Pathway WP2880 | 4.004986e-10 | 7.138888e-08 | 0 | 0 | 7.091578 | 153.449800 | SRGN;SLC26A2;MGAM;CAVIN2;AMIGO2;CUL1;NR3C1;TGF... |
4 | WikiPathways_2024_Human | Metapathway Biotransformation Phase I And II W... | 6.115627e-10 | 8.720884e-08 | 0 | 0 | 4.123522 | 87.480530 | UGT1A10;GLYAT;CYP2C19;CYP4F22;CYP19A1;CYP7A1;N... |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
154 | WikiPathways_2024_Human | Fatty Acids And Lipoproteins Transport In Hepa... | 1.065393e-02 | 4.867476e-02 | 0 | 0 | 3.721440 | 16.902130 | ABCA1;SCARB1;LRP1;ACSL5;SLC27A3;LDLR |
155 | WikiPathways_2024_Human | Ovarian Infertility WP34 | 1.065393e-02 | 4.867476e-02 | 0 | 0 | 3.721440 | 16.902130 | CDKN1B;SMAD3;VDR;CYP19A1;PRLR;SYNE2 |
156 | WikiPathways_2024_Human | Orexin Receptor Pathway WP5094 | 1.075946e-02 | 4.867476e-02 | 0 | 0 | 2.557441 | 11.590250 | SLC2A1;ARRB1;PRKCA;SLC2A4;PIK3R1;SGK1;PLD1;HIF... |
157 | WikiPathways_2024_Human | Phosphodiesterases In Neuronal Function WP4222 | 1.078627e-02 | 4.867476e-02 | 0 | 0 | 3.257478 | 14.754680 | GUCY1A1;ADCY9;PDE7B;PDE8B;ADCY8;GRIN2B;PRKG1 |
158 | WikiPathways_2024_Human | Ras Signaling WP4223 | 1.103821e-02 | 4.949840e-02 | 0 | 0 | 1.928382 | 8.690047 | PDGFRB;PLA2G12B;SHC1;PRKCA;PIK3R1;PLD1;GRIN2B;... |
159 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")
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1090: 2 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1115: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1270: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1271: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1392: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1457: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1487: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1538: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1814: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1815: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1917: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1944: 1 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/1945: 2 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/2006: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/209: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/214: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/244: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/249: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/265: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/288: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/344: 1 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/41: 0 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/457: 2 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/484: 2 overlaps
11P11 2 Copy Number Variation Syndrome WP5348 x https://identifiers.org/aop.events/890: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1090: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1115: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1270: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1271: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1392: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1457: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1487: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1538: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1814: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1815: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1917: 5 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1944: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/1945: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/2006: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/209: 5 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/214: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/244: 5 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/249: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/265: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/288: 4 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/344: 0 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/41: 5 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/457: 3 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/484: 1 overlaps
2Q37 Copy Number Variation Syndrome WP5224 x https://identifiers.org/aop.events/890: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1090: 2 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1115: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1270: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1271: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1392: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1457: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1487: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1538: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1814: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1815: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1917: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1944: 5 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/1945: 7 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/2006: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/209: 3 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/214: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/244: 2 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/249: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/265: 2 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/288: 1 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/344: 0 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/41: 3 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/457: 2 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/484: 3 overlaps
ADHD And Autism ASD Pathways WP5420 x https://identifiers.org/aop.events/890: 1 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1090: 5 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1115: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1270: 3 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1271: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1392: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1457: 1 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1487: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1538: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1814: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1815: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1917: 1 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1944: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/1945: 3 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/2006: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/209: 7 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/214: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/244: 3 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/249: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/265: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/288: 2 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/344: 0 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/41: 4 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/457: 22 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/484: 8 overlaps
Adipogenesis WP236 x https://identifiers.org/aop.events/890: 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/1270: 0 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: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1457: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1487: 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/1814: 3 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/1917: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1944: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/1945: 8 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/2006: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/209: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/214: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/244: 4 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/265: 3 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/288: 1 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/344: 0 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/41: 3 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: 8 overlaps
Alpha 6 Beta 4 Signaling WP244 x https://identifiers.org/aop.events/890: 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/1115: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1270: 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/1392: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1457: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1487: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1538: 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/1917: 2 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/1944: 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/209: 2 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/214: 0 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/249: 0 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/288: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/344: 0 overlaps
Amino Acid Metabolism In Triple Negative Breast Cancer Cells WP5213 x https://identifiers.org/aop.events/41: 2 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/890: 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: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1270: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1271: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1392: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1457: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1487: 3 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1538: 1 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/1917: 2 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1944: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/1945: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/2006: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/209: 4 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/214: 0 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: 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/288: 0 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/344: 0 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: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/484: 1 overlaps
Amino Acid Metabolism WP3925 x https://identifiers.org/aop.events/890: 1 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1090: 1 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1115: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1270: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1271: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1392: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1457: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1487: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1538: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1814: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1815: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1917: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1944: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/1945: 1 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/2006: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/209: 1 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/214: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/244: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/249: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/265: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/288: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/344: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/41: 0 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/457: 2 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/484: 2 overlaps
Amplification And Expansion Of Oncogenic Pathways WP3678 x https://identifiers.org/aop.events/890: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1090: 5 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1115: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1270: 3 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1271: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1392: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1457: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1487: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1538: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1814: 4 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1815: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1917: 2 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1944: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/1945: 4 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/2006: 4 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/209: 5 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/214: 2 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/244: 6 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/249: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/265: 3 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/288: 3 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/344: 0 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/41: 5 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/457: 9 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/484: 6 overlaps
Angiopoietin Like Protein 8 Regulatory Pathway WP3915 x https://identifiers.org/aop.events/890: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1090: 2 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1115: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1270: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1271: 2 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1392: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1457: 1 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1487: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1538: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1814: 1 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1815: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1917: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1944: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/1945: 1 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/2006: 1 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/209: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/214: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/244: 1 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/249: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/265: 2 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/288: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/344: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/41: 0 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/457: 4 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 x https://identifiers.org/aop.events/484: 2 overlaps
Angiotensin II Receptor Type 1 Pathway WP5036 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/1090: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1115: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1270: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1271: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1392: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1457: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1487: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1538: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1814: 1 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/1917: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1944: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/1945: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/2006: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/209: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/214: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/244: 4 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/249: 2 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/265: 3 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/288: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/344: 0 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/41: 4 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: 1 overlaps
Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113 x https://identifiers.org/aop.events/890: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1090: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1115: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1270: 0 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: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1457: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1487: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1538: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1814: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1815: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1917: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1944: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/1945: 5 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/2006: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/209: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/214: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/244: 3 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/249: 1 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/265: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/288: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/344: 0 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/41: 2 overlaps
Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864 x https://identifiers.org/aop.events/457: 3 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/890: 1 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1090: 7 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1115: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1270: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1271: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1392: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1457: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1487: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1538: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1814: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1815: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1917: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1944: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/1945: 6 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/2006: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/209: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/214: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/244: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/249: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/265: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/288: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/344: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/41: 0 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/457: 5 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/484: 6 overlaps
Arrhythmogenic Right Ventricular Cardiomyopathy WP2118 x https://identifiers.org/aop.events/890: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1090: 2 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1115: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1270: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1271: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1392: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1457: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1487: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1538: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1814: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1815: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1917: 2 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1944: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1945: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/2006: 2 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/209: 5 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/214: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/244: 4 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/249: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/265: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/288: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/344: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/41: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/457: 4 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/484: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/890: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1090: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1115: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1270: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1271: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1392: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1457: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1487: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1538: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1814: 2 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1815: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1917: 7 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1944: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1945: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/2006: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/209: 8 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/214: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/244: 8 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/249: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/265: 3 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/288: 4 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/344: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/41: 7 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/457: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/484: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/890: 3 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1090: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1115: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1270: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1271: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1392: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1457: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1487: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1538: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1814: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1815: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1917: 2 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1944: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/1945: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/2006: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/209: 2 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/214: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/244: 2 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/249: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/265: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/288: 2 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/344: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/41: 2 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/457: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/484: 0 overlaps
Arylamine Metabolism WP694 x https://identifiers.org/aop.events/890: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1090: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1115: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1270: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1271: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1392: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1457: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1487: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1538: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1814: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1815: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1917: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1944: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/1945: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/2006: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/209: 2 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/214: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/244: 2 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/249: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/265: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/288: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/344: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/41: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/457: 0 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/484: 1 overlaps
Axon Guidance WP5289 x https://identifiers.org/aop.events/890: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1090: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1115: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1270: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1271: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1392: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1457: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1487: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1538: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1814: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1815: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1917: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1944: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/1945: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/2006: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/209: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/214: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/244: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/249: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/265: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/288: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/344: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/41: 0 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/457: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/484: 1 overlaps
BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876 x https://identifiers.org/aop.events/890: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1090: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1115: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1270: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1271: 1 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1392: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1457: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1487: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1538: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1814: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1815: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1917: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1944: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/1945: 5 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/2006: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/209: 3 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/214: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/244: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/249: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/265: 2 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/288: 0 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/344: 1 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/41: 2 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/457: 4 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/484: 5 overlaps
Bladder Cancer WP2828 x https://identifiers.org/aop.events/890: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1090: 5 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1115: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1270: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1271: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1392: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1457: 1 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1487: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1538: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1814: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1815: 1 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1917: 1 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1944: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/1945: 4 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/2006: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/209: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/214: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/244: 3 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/249: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/265: 2 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/288: 0 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/344: 3 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/41: 1 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/457: 4 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/484: 4 overlaps
Burn Wound Healing WP5055 x https://identifiers.org/aop.events/890: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1090: 22 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1115: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1270: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1271: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1392: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1457: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1487: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1538: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1814: 12 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1815: 3 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1917: 6 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1944: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/1945: 21 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/2006: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/209: 16 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/214: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/244: 17 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/249: 2 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/265: 11 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/288: 0 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/344: 1 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/41: 8 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/457: 21 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/484: 21 overlaps
Cancer Pathways WP5434 x https://identifiers.org/aop.events/890: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1090: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1115: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1270: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1271: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1392: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1457: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1487: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1538: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1814: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1815: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1917: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1944: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/1945: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/2006: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/209: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/214: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/244: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/249: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/265: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/288: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/344: 0 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/41: 1 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/457: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/484: 2 overlaps
Cardiac Hypertrophic Response WP2795 x https://identifiers.org/aop.events/890: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1090: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1115: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1270: 4 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1271: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1392: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1457: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1487: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1538: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1814: 1 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1815: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1917: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1944: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/1945: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/2006: 1 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/209: 4 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/214: 3 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/244: 1 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/249: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/265: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/288: 1 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/344: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/41: 3 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/457: 4 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/484: 0 overlaps
Cholesterol Metabolism WP5304 x https://identifiers.org/aop.events/890: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1090: 3 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1115: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1270: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1271: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1392: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1457: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1487: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1538: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1814: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1815: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1917: 2 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1944: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/1945: 1 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/2006: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/209: 2 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/214: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/244: 2 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/249: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/265: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/288: 0 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/344: 5 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/41: 2 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/457: 1 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/484: 2 overlaps
Chronic Hyperglycemia Impairment Of Neuron Function WP5283 x https://identifiers.org/aop.events/890: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1090: 2 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1115: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1270: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1271: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1392: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1457: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1487: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1538: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1814: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1815: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1917: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1944: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/1945: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/2006: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/209: 3 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/214: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/244: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/249: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/265: 2 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/288: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/344: 0 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/41: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/457: 5 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/484: 1 overlaps
Circadian Rhythm Genes WP3594 x https://identifiers.org/aop.events/890: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1090: 4 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1115: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1270: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1271: 2 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1392: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1457: 1 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1487: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1538: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1814: 2 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1815: 1 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1917: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1944: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/1945: 2 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/2006: 2 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/209: 4 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/214: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/244: 2 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/249: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/265: 2 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/288: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/344: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/41: 0 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/457: 1 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/484: 1 overlaps
Clock Controlled Autophagy In Bone Metabolism WP5205 x https://identifiers.org/aop.events/890: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1090: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1115: 1 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1270: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1271: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1392: 1 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1457: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1487: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1538: 1 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1814: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1815: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1917: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1944: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/1945: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/2006: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/209: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/214: 2 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/244: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/249: 1 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/265: 1 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/288: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/344: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/41: 5 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/457: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/484: 0 overlaps
Codeine And Morphine Metabolism WP1604 x https://identifiers.org/aop.events/890: 1 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1090: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1115: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1270: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1271: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1392: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1457: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1487: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1538: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1814: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1815: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1917: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1944: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/1945: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/2006: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/209: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/214: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/244: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/249: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/265: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/288: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/344: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/41: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/457: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/484: 0 overlaps
Complement Activation WP545 x https://identifiers.org/aop.events/890: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1090: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1115: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1270: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1271: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1392: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1457: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1487: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1538: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1814: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1815: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1917: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1944: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/1945: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/2006: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/209: 2 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/214: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/244: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/249: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/265: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/288: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/344: 0 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/41: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/457: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/484: 1 overlaps
Complement System In Neuronal Development And Plasticity WP5090 x https://identifiers.org/aop.events/890: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1090: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1115: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1270: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1271: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1392: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1457: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1487: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1538: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1814: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1815: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1917: 6 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1944: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/1945: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/2006: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/209: 6 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/214: 3 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/244: 7 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/249: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/265: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/288: 9 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/344: 0 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/41: 7 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/457: 2 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/484: 1 overlaps
Constitutive Androstane Receptor Pathway WP2875 x https://identifiers.org/aop.events/890: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1090: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1115: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1270: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1271: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1392: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1457: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1487: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1538: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1814: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1815: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1917: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1944: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/1945: 2 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/2006: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/209: 2 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/214: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/244: 1 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/249: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/265: 5 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/288: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/344: 0 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/41: 2 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/457: 3 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/484: 2 overlaps
Cytokine Cytokine Receptor Interaction WP5473 x https://identifiers.org/aop.events/890: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1090: 9 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1115: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1270: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1271: 1 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1392: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1457: 1 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1487: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1538: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1814: 16 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1815: 2 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1917: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1944: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/1945: 8 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/2006: 16 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/209: 5 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/214: 1 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/244: 16 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/249: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/265: 4 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/288: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/344: 0 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/41: 3 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/457: 6 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/484: 8 overlaps
DNA Damage Response Only ATM Dependent WP710 x https://identifiers.org/aop.events/890: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1090: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1115: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1270: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1271: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1392: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1457: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1487: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1538: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1814: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1815: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1917: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1944: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/1945: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/2006: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/209: 2 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/214: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/244: 2 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/249: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/265: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/288: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/344: 0 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/41: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/457: 2 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/484: 1 overlaps
Development Of Ureteric Derived Collecting System WP5053 x https://identifiers.org/aop.events/890: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1090: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1115: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1270: 3 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1271: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1392: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1457: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1487: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1538: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1814: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1815: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1917: 2 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1944: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/1945: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/2006: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/209: 5 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/214: 5 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/244: 2 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/249: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/265: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/288: 5 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/344: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/41: 5 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/457: 2 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/484: 0 overlaps
Disorders Of Bile Acid Synthesis And Biliary Transport WP5176 x https://identifiers.org/aop.events/890: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1090: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1115: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1270: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1271: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1392: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1457: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1487: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1538: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1814: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1815: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1917: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1944: 7 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/1945: 1 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/2006: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/209: 1 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/214: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/244: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/249: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/265: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/288: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/344: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/41: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/457: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/484: 0 overlaps
Disruption Of Postsynaptic Signaling By CNV WP4875 x https://identifiers.org/aop.events/890: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1090: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1115: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1270: 1 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1271: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1392: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1457: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1487: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1538: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1814: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1815: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1917: 2 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1944: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/1945: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/2006: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/209: 3 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/214: 4 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/244: 2 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/249: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/265: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/288: 4 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/344: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/41: 4 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/457: 1 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/484: 0 overlaps
Drug Induction Of Bile Acid Pathway WP2289 x https://identifiers.org/aop.events/890: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1090: 8 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/1270: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1271: 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/1457: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1487: 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/1814: 7 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1815: 2 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1917: 2 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1944: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/1945: 12 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/209: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/214: 0 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: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/288: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/344: 0 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/41: 3 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/457: 5 overlaps
EGFR Tyrosine Kinase Inhibitor Resistance WP4806 x https://identifiers.org/aop.events/484: 10 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/1090: 6 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1115: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1270: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1271: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1392: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1457: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1487: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1538: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1814: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1815: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1917: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1944: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/1945: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/2006: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/209: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/214: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/244: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/249: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/265: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/288: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/344: 0 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/41: 1 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/457: 4 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/484: 5 overlaps
Ebola Virus Infection In Host WP4217 x https://identifiers.org/aop.events/890: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1090: 2 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1115: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1270: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1271: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1392: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1457: 1 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1487: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1538: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1814: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1815: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1917: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1944: 1 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/1945: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/2006: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/209: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/214: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/244: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/249: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/265: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/288: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/344: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/41: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/457: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/484: 0 overlaps
Ectoderm Differentiation WP2858 x https://identifiers.org/aop.events/890: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1090: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1115: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1270: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1271: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1392: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1457: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1487: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1538: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1814: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1815: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1917: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1944: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/1945: 2 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/2006: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/209: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/214: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/244: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/249: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/265: 1 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/288: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/344: 0 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/41: 2 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/457: 3 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/484: 3 overlaps
Endochondral Ossification WP474 x https://identifiers.org/aop.events/890: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1090: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1115: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1270: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1271: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1392: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1457: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1487: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1538: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1814: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1815: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1917: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1944: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/1945: 2 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/2006: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/209: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/214: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/244: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/249: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/265: 1 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/288: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/344: 0 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/41: 2 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/457: 3 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/484: 3 overlaps
Endochondral Ossification With Skeletal Dysplasias WP4808 x https://identifiers.org/aop.events/890: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1090: 2 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1115: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1270: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1271: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1392: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1457: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1487: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1538: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1814: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1815: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1917: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1944: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/1945: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/2006: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/209: 2 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/214: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/244: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/249: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/265: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/288: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/344: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/41: 0 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/457: 3 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/484: 1 overlaps
Endoderm Differentiation WP2853 x https://identifiers.org/aop.events/890: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1090: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1115: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1270: 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/1392: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1457: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1487: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1538: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1814: 2 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/1917: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1944: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/1945: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/2006: 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/214: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/244: 3 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/249: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/265: 4 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/288: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/344: 0 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/41: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/457: 2 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/484: 1 overlaps
Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535 x https://identifiers.org/aop.events/890: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1090: 10 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/1270: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1271: 2 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/1457: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1487: 0 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/1814: 6 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/1917: 1 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1944: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/1945: 4 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/2006: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/209: 7 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/214: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/244: 7 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/265: 5 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/288: 0 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/344: 1 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/41: 2 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/457: 6 overlaps
Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239 x https://identifiers.org/aop.events/484: 4 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/1090: 7 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1115: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1270: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1271: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1392: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1457: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1487: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1538: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1814: 8 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1815: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1917: 2 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1944: 1 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/1945: 11 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/2006: 8 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/209: 5 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/214: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/244: 10 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/249: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/265: 3 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/288: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/344: 0 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/41: 4 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/457: 4 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/484: 8 overlaps
ErbB Signaling WP673 x https://identifiers.org/aop.events/890: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1090: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1115: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1270: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1271: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1392: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1457: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1487: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1538: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1814: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1815: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1917: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1944: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/1945: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/2006: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/209: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/214: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/244: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/249: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/265: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/288: 1 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/344: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/41: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/457: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/484: 0 overlaps
Estrogen Metabolism WP5276 x https://identifiers.org/aop.events/890: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1090: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1115: 2 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1270: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1271: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1392: 2 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1457: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1487: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1538: 2 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1814: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1815: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1917: 3 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1944: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1945: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/2006: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/209: 4 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/214: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/244: 3 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/249: 2 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/265: 2 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/288: 3 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/344: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/41: 3 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/457: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/484: 0 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/890: 2 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1090: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1115: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1270: 3 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1271: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1392: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1457: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1487: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1538: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1814: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1815: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1917: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1944: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1945: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/2006: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/209: 4 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/214: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/244: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/249: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/265: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/288: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/344: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/41: 0 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/457: 2 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/484: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/890: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1090: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1115: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1270: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1271: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1392: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1457: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1487: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1538: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1814: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1815: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1917: 3 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1944: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/1945: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/2006: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/209: 3 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/214: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/244: 3 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/249: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/265: 1 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/288: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/344: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/41: 3 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/457: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/484: 0 overlaps
Ethanol Metabolism Production Of ROS By CYP2E1 WP4269 x https://identifiers.org/aop.events/890: 1 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1090: 2 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1115: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1270: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1271: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1392: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1457: 1 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1487: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1538: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1814: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1815: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1917: 2 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1944: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/1945: 1 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/2006: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/209: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/214: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/244: 5 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/249: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/265: 3 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/288: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/344: 0 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/41: 2 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/457: 1 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/484: 1 overlaps
Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870 x https://identifiers.org/aop.events/890: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1090: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1115: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1270: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1271: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1392: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1457: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1487: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1538: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1814: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1815: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1917: 2 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1944: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/1945: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/2006: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/209: 2 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/214: 3 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/244: 2 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/249: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/265: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/288: 3 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/344: 0 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/41: 3 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/457: 2 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/484: 2 overlaps
FOXA2 Pathway WP5066 x https://identifiers.org/aop.events/890: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1090: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1115: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1270: 2 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1271: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1392: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1457: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1487: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1538: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1814: 1 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1815: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1917: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1944: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/1945: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/2006: 1 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/209: 2 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/214: 1 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/244: 1 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/249: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/265: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/288: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/344: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/41: 1 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/457: 1 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/484: 0 overlaps
Familial Hyperlipidemia Type 1 WP5108 x https://identifiers.org/aop.events/890: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1090: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1115: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1270: 2 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1271: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1392: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1457: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1487: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1538: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1814: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1815: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1917: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1944: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/1945: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/2006: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/209: 2 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/214: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/244: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/249: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/265: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/288: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/344: 0 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/41: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/457: 2 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/484: 1 overlaps
Familial Hyperlipidemia Type 2 WP5109 x https://identifiers.org/aop.events/890: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1090: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1115: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1270: 2 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1271: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1392: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1457: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1487: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1538: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1814: 1 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1815: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1917: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1944: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/1945: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/2006: 1 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/209: 2 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/214: 2 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/244: 1 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/249: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/265: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/288: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/344: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/41: 2 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/457: 1 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/484: 0 overlaps
Familial Hyperlipidemia Type 3 WP5110 x https://identifiers.org/aop.events/890: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1090: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1115: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1270: 2 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1271: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1392: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1457: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1487: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1538: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1814: 1 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1815: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1917: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1944: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/1945: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/2006: 1 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/209: 2 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/214: 1 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/244: 1 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/249: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/265: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/288: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/344: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/41: 1 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/457: 1 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/484: 0 overlaps
Familial Hyperlipidemia Type 4 WP5111 x https://identifiers.org/aop.events/890: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1090: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1115: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1270: 2 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1271: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1392: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1457: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1487: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1538: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1814: 1 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1815: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1917: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1944: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/1945: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/2006: 1 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/209: 2 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/214: 1 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/244: 1 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/249: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/265: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/288: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/344: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/41: 1 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/457: 1 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/484: 0 overlaps
Familial Hyperlipidemia Type 5 WP5112 x https://identifiers.org/aop.events/890: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1090: 1 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1115: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1270: 2 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1271: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1392: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1457: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1487: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1538: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1814: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1815: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1917: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1944: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/1945: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/2006: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/209: 2 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/214: 7 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/244: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/249: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/265: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/288: 7 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/344: 0 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/41: 7 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/457: 3 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/484: 2 overlaps
Farnesoid X Receptor Pathway WP2879 x https://identifiers.org/aop.events/890: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1090: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1115: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1270: 1 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1271: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1392: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1457: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1487: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1538: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1814: 1 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1815: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1917: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1944: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/1945: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/2006: 1 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/209: 1 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/214: 2 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/244: 1 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/249: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/265: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/288: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/344: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/41: 2 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/457: 1 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/484: 0 overlaps
Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323 x https://identifiers.org/aop.events/890: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1090: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1115: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1270: 1 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1271: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1392: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1457: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1487: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1538: 2 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/1917: 5 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1944: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/1945: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/2006: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/209: 6 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/214: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/244: 5 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/249: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/265: 2 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/288: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/344: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/41: 5 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/457: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/484: 0 overlaps
Ferroptosis WP4313 x https://identifiers.org/aop.events/890: 2 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1090: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1115: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1270: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1271: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1392: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1457: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1487: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1538: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1814: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1815: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1917: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1944: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/1945: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/2006: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/209: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/214: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/244: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/249: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/265: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/288: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/344: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/41: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/457: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/484: 0 overlaps
Fluoroacetic Acid Toxicity WP4966 x https://identifiers.org/aop.events/890: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1090: 18 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1115: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1270: 0 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: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1487: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1538: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1814: 5 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/1917: 3 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1944: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/1945: 27 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/2006: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/209: 6 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/214: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/244: 8 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/249: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/265: 5 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/288: 2 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/344: 0 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/41: 9 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/457: 40 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/484: 40 overlaps
Focal Adhesion PI3K Akt mTOR Signaling WP3932 x https://identifiers.org/aop.events/890: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1090: 18 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1115: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1270: 0 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: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1487: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1538: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1814: 6 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1815: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1917: 1 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1944: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/1945: 22 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/2006: 6 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/209: 4 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/214: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/244: 7 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/249: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/265: 5 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/288: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/344: 0 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/41: 2 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/457: 16 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/484: 20 overlaps
Focal Adhesion WP306 x https://identifiers.org/aop.events/890: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1090: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1115: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1270: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1271: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1392: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1457: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1487: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1538: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1814: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1815: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1917: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1944: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/1945: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/2006: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/209: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/214: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/244: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/249: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/265: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/288: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/344: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/41: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/457: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/484: 0 overlaps
GDNF RET Signaling Axis WP4830 x https://identifiers.org/aop.events/890: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1090: 2 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1115: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1270: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1271: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1392: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1457: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1487: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1538: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1814: 3 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1815: 1 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1917: 1 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1944: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/1945: 4 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/2006: 3 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/209: 2 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/214: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/244: 4 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/249: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/265: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/288: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/344: 0 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/41: 2 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/457: 4 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/484: 5 overlaps
Galanin Receptor Pathway WP4970 x https://identifiers.org/aop.events/890: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1090: 5 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1115: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1270: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1271: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1392: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1457: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1487: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1538: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1814: 6 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1815: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1917: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1944: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/1945: 8 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/2006: 6 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/209: 4 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/214: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/244: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/249: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/265: 5 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/288: 0 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/344: 1 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/41: 3 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/457: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/484: 7 overlaps
Gastrin Signaling WP4659 x https://identifiers.org/aop.events/890: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1090: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1115: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1270: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1271: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1392: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1457: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1487: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1538: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1814: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1815: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1917: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1944: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/1945: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/2006: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/209: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/214: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/244: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/249: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/265: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/288: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/344: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/41: 0 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/457: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/484: 4 overlaps
Genes Controlling Nephrogenesis WP4823 x https://identifiers.org/aop.events/890: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1090: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1115: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1270: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1271: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1392: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1457: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1487: 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/1814: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1815: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1917: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1944: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/1945: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/2006: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/209: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/214: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/244: 0 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: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/288: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/344: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/41: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/457: 1 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/484: 0 overlaps
Glucocorticoid Receptor Pathway WP2880 x https://identifiers.org/aop.events/890: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1090: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1115: 1 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1270: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1271: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1392: 1 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1457: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1487: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1538: 1 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1814: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1815: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1917: 5 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1944: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/1945: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/2006: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/209: 5 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/214: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/244: 5 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/249: 1 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/265: 1 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/288: 4 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/344: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/41: 5 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/457: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/484: 0 overlaps
Glucuronidation WP698 x https://identifiers.org/aop.events/890: 1 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1090: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1115: 3 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1270: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1271: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1392: 3 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1457: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1487: 7 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1538: 3 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1814: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1815: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1917: 5 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1944: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/1945: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/2006: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/209: 7 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/214: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/244: 5 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/249: 3 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/265: 3 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/288: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/344: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/41: 5 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/457: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/484: 0 overlaps
Glutathione Metabolism WP100 x https://identifiers.org/aop.events/890: 3 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1090: 4 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1115: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1270: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1271: 1 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1392: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1457: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1487: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1538: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1814: 1 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1815: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1917: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1944: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/1945: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/2006: 1 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/209: 4 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/214: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/244: 1 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/249: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/265: 1 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/288: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/344: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/41: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/457: 2 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/484: 0 overlaps
Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840 x https://identifiers.org/aop.events/890: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1090: 4 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/1270: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1271: 0 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/1457: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1487: 0 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/1814: 5 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/1917: 1 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1944: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/1945: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/2006: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/209: 5 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/214: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/244: 5 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: 2 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/288: 0 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/344: 0 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: 4 overlaps
Head And Neck Squamous Cell Carcinoma WP4674 x https://identifiers.org/aop.events/484: 5 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/1090: 6 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1115: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1270: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1271: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1392: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1457: 1 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1487: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1538: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1814: 4 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/1917: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1944: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/1945: 4 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/2006: 4 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/209: 2 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/214: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/244: 4 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/249: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/265: 3 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/288: 0 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/344: 0 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: 5 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/484: 5 overlaps
Hepatitis C And Hepatocellular Carcinoma WP3646 x https://identifiers.org/aop.events/890: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1090: 16 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/1270: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1271: 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/1457: 2 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1487: 0 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/1814: 1 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/1917: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1944: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/1945: 10 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/2006: 1 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/209: 2 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/214: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/244: 1 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/265: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/288: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/344: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/41: 0 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/457: 8 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/484: 9 overlaps
Hippo Merlin Signaling Dysregulation WP4541 x https://identifiers.org/aop.events/890: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1090: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1115: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1270: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1271: 5 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1392: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1457: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1487: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1538: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1814: 2 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/1917: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1944: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/1945: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/2006: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/209: 1 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/214: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/244: 2 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/249: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/265: 6 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/288: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/344: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/41: 0 overlaps
Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668 x https://identifiers.org/aop.events/457: 2 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/890: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1090: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1115: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1270: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1271: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1392: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1457: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1487: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1538: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1814: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1815: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1917: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1944: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/1945: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/2006: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/209: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/214: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/244: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/249: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/265: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/288: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/344: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/41: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/457: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/484: 0 overlaps
Hypothetical Craniofacial Development Pathway WP3655 x https://identifiers.org/aop.events/890: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1090: 8 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1115: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1270: 1 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1271: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1392: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1457: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1487: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1538: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1814: 2 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1815: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1917: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1944: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/1945: 9 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/2006: 2 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/209: 2 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/214: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/244: 2 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/249: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/265: 4 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/288: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/344: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/41: 0 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/457: 6 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/484: 7 overlaps
Integrin Mediated Cell Adhesion WP185 x https://identifiers.org/aop.events/890: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1090: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1115: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1270: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1271: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1392: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1457: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1487: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1538: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1814: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1815: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1917: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1944: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/1945: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/2006: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/209: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/214: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/244: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/249: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/265: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/288: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/344: 0 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/41: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/457: 2 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/484: 1 overlaps
Interactions Between LOXL4 And Oxidative Stress Pathway WP3670 x https://identifiers.org/aop.events/890: 1 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1090: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1115: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1270: 1 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1271: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1392: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1457: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1487: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1538: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1814: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1815: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1917: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1944: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/1945: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/2006: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/209: 1 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/214: 1 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/244: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/249: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/265: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/288: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/344: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/41: 1 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/457: 1 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/484: 0 overlaps
Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273 x https://identifiers.org/aop.events/890: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1090: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1115: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1270: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1271: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1392: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1457: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1487: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1538: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1814: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1815: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1917: 4 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1944: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/1945: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/2006: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/209: 4 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/214: 1 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/244: 4 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/249: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/265: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/288: 3 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/344: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/41: 4 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/457: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/484: 0 overlaps
Irinotecan Pathway WP229 x https://identifiers.org/aop.events/890: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1090: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1115: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1270: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1271: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1392: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1457: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1487: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1538: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1814: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1815: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1917: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1944: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/1945: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/2006: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/209: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/214: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/244: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/249: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/265: 1 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/288: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/344: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/41: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/457: 0 overlaps
LDLRAD4 And What We Know About It WP4904 x https://identifiers.org/aop.events/484: 0 overlaps
LDLRAD4 And What We Know About It WP4904 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/1090: 3 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/1270: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1271: 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/1457: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1487: 0 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/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/1917: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1944: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/1945: 1 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/209: 2 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/214: 0 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/265: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/288: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/344: 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: 0 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/484: 1 overlaps
Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814 x https://identifiers.org/aop.events/890: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1090: 1 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1115: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1270: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1271: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1392: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1457: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1487: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1538: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1814: 2 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1815: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1917: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1944: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/1945: 2 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/2006: 2 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/209: 1 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/214: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/244: 2 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/249: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/265: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/288: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/344: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/41: 0 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/457: 2 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/484: 2 overlaps
Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817 x https://identifiers.org/aop.events/890: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1090: 4 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1115: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1270: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1271: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1392: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1457: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1487: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1538: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1814: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1815: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1917: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1944: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/1945: 3 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/2006: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/209: 2 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/214: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/244: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/249: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/265: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/288: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/344: 0 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/41: 1 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/457: 4 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/484: 3 overlaps
Markers Of Kidney Cell Lineage WP5236 x https://identifiers.org/aop.events/890: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1090: 2 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1115: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1270: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1271: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1392: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1457: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1487: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1538: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1814: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1815: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1917: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1944: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/1945: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/2006: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/209: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/214: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/244: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/249: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/265: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/288: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/344: 7 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/41: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/457: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/484: 0 overlaps
Matrix Metalloproteinases WP129 x https://identifiers.org/aop.events/890: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1090: 7 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1115: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1270: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1271: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1392: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1457: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1487: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1538: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1814: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1815: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1917: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1944: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/1945: 3 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/2006: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/209: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/214: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/244: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/249: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/265: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/288: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/344: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/41: 0 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/457: 3 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/484: 2 overlaps
Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534 x https://identifiers.org/aop.events/890: 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/1270: 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/1457: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1487: 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/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/1917: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1944: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/1945: 1 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/209: 4 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/214: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/244: 2 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/288: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/344: 0 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/41: 2 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/457: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/484: 3 overlaps
Metabolic Epileptic Disorders WP5355 x https://identifiers.org/aop.events/890: 1 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1090: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1115: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1270: 1 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1271: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1392: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1457: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1487: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1538: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1814: 1 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1917: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1944: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/2006: 1 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/209: 1 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/214: 2 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/244: 1 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/249: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/265: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/288: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/344: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/41: 2 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/457: 2 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/484: 0 overlaps
Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522 x https://identifiers.org/aop.events/890: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1090: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1115: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1270: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1271: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1392: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1457: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1487: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1538: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1814: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1815: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1917: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1944: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/1945: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/2006: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/209: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/214: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/244: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/249: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/265: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/288: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/344: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/41: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/457: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/484: 0 overlaps
Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142 x https://identifiers.org/aop.events/890: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1090: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1115: 4 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1270: 3 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1271: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1392: 4 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1457: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1487: 3 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1538: 4 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1814: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1815: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1917: 8 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1944: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1945: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/2006: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/209: 12 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/214: 3 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/244: 8 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/249: 4 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/265: 4 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/288: 9 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/344: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/41: 11 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/457: 3 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/484: 0 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/890: 4 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1090: 3 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1115: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1270: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1271: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1392: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1457: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1487: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1538: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1814: 2 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/1917: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1944: 1 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/1945: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/2006: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/209: 5 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/214: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/244: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/249: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/265: 3 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/288: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/344: 0 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/41: 1 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/457: 4 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/484: 2 overlaps
MicroRNAs In Cardiomyocyte Hypertrophy WP1544 x https://identifiers.org/aop.events/890: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1090: 3 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1115: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1270: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1271: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1392: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1457: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1487: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1538: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1814: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1815: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1917: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1944: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/1945: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/2006: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/209: 3 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/214: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/244: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/249: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/265: 3 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/288: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/344: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/41: 2 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/457: 0 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/484: 1 overlaps
Myometrial Relaxation And Contraction Pathways WP289 x https://identifiers.org/aop.events/890: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1090: 2 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1115: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1270: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1271: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1392: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1457: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1487: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1538: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1814: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1815: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1917: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1944: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/1945: 2 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/2006: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/209: 1 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/214: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/244: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/249: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/265: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/288: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/344: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/41: 0 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/457: 1 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/484: 2 overlaps
NOTCH1 Regulation Of Endothelial Cell Calcification WP3413 x https://identifiers.org/aop.events/890: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1090: 3 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1115: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1270: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1271: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1392: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1457: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1487: 5 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1538: 6 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/1917: 34 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1944: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/1945: 2 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/2006: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/209: 34 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/214: 2 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/244: 34 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/249: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/265: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/288: 6 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/344: 0 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/41: 34 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/457: 3 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/484: 4 overlaps
NRF2 Pathway WP2884 x https://identifiers.org/aop.events/890: 6 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1090: 4 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1115: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1270: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1271: 3 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1392: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1457: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1487: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1538: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1814: 2 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1815: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1917: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1944: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/1945: 4 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/2006: 2 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/209: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/214: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/244: 3 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/249: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/265: 3 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/288: 0 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/344: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/41: 1 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/457: 5 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/484: 4 overlaps
NRP1 Triggered Signaling In Pancreatic Cancer WP5144 x https://identifiers.org/aop.events/890: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1090: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1115: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1270: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1271: 3 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1392: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1457: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1487: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1538: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1814: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1815: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1917: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1944: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/1945: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/2006: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/209: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/214: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/244: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/249: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/265: 3 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/288: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/344: 0 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/41: 1 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/457: 3 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/484: 2 overlaps
Neovascularization Processes WP4331 x https://identifiers.org/aop.events/890: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1090: 2 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1115: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1270: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1271: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1392: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1457: 1 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1487: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1538: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1814: 2 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1815: 1 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1917: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1944: 2 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/1945: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/2006: 2 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/209: 4 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/214: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/244: 5 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/249: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/265: 4 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/288: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/344: 0 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/41: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/457: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/484: 3 overlaps
Neuroinflammation And Glutamatergic Signaling WP5083 x https://identifiers.org/aop.events/890: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1090: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1115: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1270: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1271: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1392: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1457: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1487: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1538: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1814: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1815: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1917: 2 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1944: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/1945: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/2006: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/209: 2 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/214: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/244: 2 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/249: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/265: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/288: 3 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/344: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/41: 2 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/457: 1 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/484: 0 overlaps
Nicotine Metabolism In Liver Cells WP1600 x https://identifiers.org/aop.events/890: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1090: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1115: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1270: 3 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1271: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1392: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1457: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1487: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1538: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1814: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1815: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1917: 2 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1944: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/1945: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/2006: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/209: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/214: 4 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/244: 2 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/249: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/265: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/288: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/344: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/41: 4 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/457: 5 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/484: 0 overlaps
Nuclear Receptors In Lipid Metabolism And Toxicity WP299 x https://identifiers.org/aop.events/890: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1090: 7 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/1270: 6 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1271: 1 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/1457: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1487: 5 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/1814: 4 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/1917: 34 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1944: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/1945: 5 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/2006: 3 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/209: 42 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/214: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/244: 37 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: 8 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/288: 15 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/344: 0 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/41: 41 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/457: 11 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/484: 9 overlaps
Nuclear Receptors Meta Pathway WP2882 x https://identifiers.org/aop.events/890: 7 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1090: 1 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1115: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1270: 1 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1271: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1392: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1457: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1487: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1538: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1814: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1815: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1917: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1944: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/1945: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/2006: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/209: 2 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/214: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/244: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/249: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/265: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/288: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/344: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/41: 1 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/457: 3 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/484: 0 overlaps
Nuclear Receptors WP170 x https://identifiers.org/aop.events/890: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1090: 2 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1115: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1270: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1271: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1392: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1457: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1487: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1538: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1814: 2 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1815: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1917: 4 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1944: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/1945: 4 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/2006: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/209: 4 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/214: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/244: 5 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/249: 1 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/265: 4 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/288: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/344: 0 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/41: 5 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/457: 4 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/484: 6 overlaps
Orexin Receptor Pathway WP5094 x https://identifiers.org/aop.events/890: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1090: 5 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1115: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1270: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1271: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1392: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1457: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1487: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1538: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1814: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1815: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1917: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1944: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/1945: 4 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/2006: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/209: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/214: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/244: 2 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/249: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/265: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/288: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/344: 0 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/41: 1 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/457: 6 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/484: 7 overlaps
Osteoarthritic Chondrocyte Hypertrophy WP5373 x https://identifiers.org/aop.events/890: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1090: 6 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1115: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1270: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1271: 2 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1392: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1457: 1 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1487: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1538: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1814: 4 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1815: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1917: 1 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1944: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/1945: 3 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/2006: 4 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/209: 7 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/214: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/244: 5 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/249: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/265: 3 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/288: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/344: 0 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/41: 2 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/457: 5 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/484: 4 overlaps
Osteoblast Differentiation And Related Diseases WP4787 x https://identifiers.org/aop.events/890: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1090: 2 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1115: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1270: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1271: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1392: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1457: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1487: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1538: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1814: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1815: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1917: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1944: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/1945: 3 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/2006: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/209: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/214: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/244: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/249: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/265: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/288: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/344: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/41: 0 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/457: 3 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/484: 3 overlaps
Osteoblast Signaling WP322 x https://identifiers.org/aop.events/890: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1090: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1115: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1270: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1271: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1392: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1457: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1487: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1538: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1814: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1815: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1917: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1944: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/1945: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/2006: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/209: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/214: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/244: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/249: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/265: 1 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/288: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/344: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/41: 0 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/457: 3 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/484: 2 overlaps
Ovarian Infertility WP34 x https://identifiers.org/aop.events/890: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1090: 3 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/1270: 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/1457: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1487: 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/1814: 3 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/1917: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1944: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/1945: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/2006: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/209: 4 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/214: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/244: 4 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: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/288: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/344: 0 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/41: 2 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/457: 3 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/484: 1 overlaps
Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879 x https://identifiers.org/aop.events/890: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1090: 2 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1115: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1270: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1271: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1392: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1457: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1487: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1538: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1814: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1815: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1917: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1944: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/1945: 1 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/2006: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/209: 1 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/214: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/244: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/249: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/265: 4 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/288: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/344: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/41: 0 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/457: 1 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/484: 1 overlaps
Overview Of Proinflammatory And Profibrotic Mediators WP5095 x https://identifiers.org/aop.events/890: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1090: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1115: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1270: 3 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1271: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1392: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1457: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1487: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1538: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1814: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1815: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1917: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1944: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1945: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/2006: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/209: 4 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/214: 2 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/244: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/249: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/265: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/288: 4 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/344: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/41: 2 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/457: 3 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/484: 0 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/890: 1 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1090: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1115: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1270: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1271: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1392: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1457: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1487: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1538: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1814: 4 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1815: 1 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1917: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1944: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/1945: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/2006: 4 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/209: 1 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/214: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/244: 4 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/249: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/265: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/288: 0 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/344: 0 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: 2 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/484: 3 overlaps
Oxidative Damage Response WP3941 x https://identifiers.org/aop.events/890: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1090: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1115: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1270: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1271: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1392: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1457: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1487: 3 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1538: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1814: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1815: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1917: 6 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1944: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1945: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/2006: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/209: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/214: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/244: 6 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/249: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/265: 8 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/288: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/344: 0 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: 0 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/890: 8 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1090: 20 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1115: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1270: 1 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: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1487: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1538: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1814: 7 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1815: 2 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1917: 3 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1944: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/1945: 38 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/2006: 7 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/209: 8 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/214: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/244: 10 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/249: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/265: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/288: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/344: 0 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/41: 5 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/457: 28 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/484: 38 overlaps
PI3K Akt Signaling WP4172 x https://identifiers.org/aop.events/890: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1090: 1 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1115: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1270: 4 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1271: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1392: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1457: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1487: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1538: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1814: 1 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1815: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1917: 1 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1944: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/1945: 1 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/2006: 1 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/209: 6 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/214: 2 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/244: 2 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/249: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/265: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/288: 3 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/344: 0 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/41: 3 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/457: 2 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/484: 1 overlaps
PPAR Alpha Pathway WP2878 x https://identifiers.org/aop.events/890: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1090: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1115: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1270: 10 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1271: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1392: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1457: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1487: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1538: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1814: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1815: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1917: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1944: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/1945: 1 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/2006: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/209: 10 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/214: 2 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/244: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/249: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/265: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/288: 2 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/344: 0 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/41: 2 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/457: 5 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/484: 1 overlaps
PPAR Signaling WP3942 x https://identifiers.org/aop.events/890: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1090: 3 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1115: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1270: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1271: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1392: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1457: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1487: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1538: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1814: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1815: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1917: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1944: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/1945: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/2006: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/209: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/214: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/244: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/249: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/265: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/288: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/344: 0 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/41: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/457: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/484: 1 overlaps
Pancreatic Cancer Subtypes WP5390 x https://identifiers.org/aop.events/890: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1090: 2 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1115: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1270: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1271: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1392: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1457: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1487: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1538: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1814: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1815: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1917: 1 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1944: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/1945: 1 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/2006: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/209: 2 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/214: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/244: 1 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/249: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/265: 1 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/288: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/344: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/41: 1 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/457: 0 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/484: 1 overlaps
Pathogenic Escherichia Coli Infection WP2272 x https://identifiers.org/aop.events/890: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1090: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1115: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1270: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1271: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1392: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1457: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1487: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1538: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1814: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1815: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1917: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1944: 1 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/1945: 1 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/2006: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/209: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/214: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/244: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/249: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/265: 2 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/288: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/344: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/41: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/457: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/484: 0 overlaps
Phosphodiesterases In Neuronal Function WP4222 x https://identifiers.org/aop.events/890: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1090: 5 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/1270: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1271: 0 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/1457: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1487: 0 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/1814: 5 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1815: 3 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1917: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1944: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1945: 5 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/2006: 4 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/209: 3 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/214: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/244: 5 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/265: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/288: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/344: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/41: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/457: 2 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/484: 5 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/890: 1 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1090: 4 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/1270: 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/1457: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1487: 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/1814: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1815: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1917: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1944: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/1945: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/2006: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/209: 3 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/214: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/244: 2 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/288: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/344: 0 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/41: 2 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/457: 4 overlaps
Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614 x https://identifiers.org/aop.events/484: 4 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/1090: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1115: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1270: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1271: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1392: 2 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/1487: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1538: 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: 1 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1917: 6 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/1944: 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: 0 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/214: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/244: 6 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/249: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/265: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/288: 2 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/344: 0 overlaps
Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612 x https://identifiers.org/aop.events/41: 6 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/890: 2 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1090: 6 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1115: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1270: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1271: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1392: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1457: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1487: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1538: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1814: 5 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1815: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1917: 1 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1944: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/1945: 5 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/2006: 5 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/209: 5 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/214: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/244: 6 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/249: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/265: 3 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/288: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/344: 0 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/41: 2 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/457: 4 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/484: 4 overlaps
Physico Chemical Features And Toxicity Associated Pathways WP3680 x https://identifiers.org/aop.events/890: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1090: 62 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1115: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1270: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1271: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1392: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1457: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1487: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1538: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1814: 9 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1815: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1917: 3 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1944: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/1945: 24 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/2006: 9 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/209: 17 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/214: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/244: 12 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/249: 0 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/265: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/288: 1 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/344: 2 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/41: 5 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/457: 20 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/484: 23 overlaps
Pleural Mesothelioma WP5087 x https://identifiers.org/aop.events/890: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1090: 5 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1115: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1270: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1271: 1 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1392: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1457: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1487: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1538: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1814: 2 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1815: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1917: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1944: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/1945: 2 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/2006: 2 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/209: 4 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/214: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/244: 2 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/249: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/265: 1 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/288: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/344: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/41: 0 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/457: 1 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/484: 2 overlaps
Pluripotent Stem Cell Differentiation Pathway WP2848 x https://identifiers.org/aop.events/890: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1090: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1115: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1270: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1271: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1392: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1457: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1487: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1538: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1814: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1815: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1917: 6 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1944: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/1945: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/2006: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/209: 6 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/214: 3 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/244: 6 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/249: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/265: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/288: 9 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/344: 0 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/41: 7 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/457: 2 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/484: 1 overlaps
Pregnane X Receptor Pathway WP2876 x https://identifiers.org/aop.events/890: 1 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1090: 7 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/1270: 0 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: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1487: 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/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/1917: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1944: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/1945: 5 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/209: 4 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/214: 0 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/249: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/265: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/288: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/344: 0 overlaps
Primary Focal Segmental Glomerulosclerosis FSGS WP2572 x https://identifiers.org/aop.events/41: 1 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: 5 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/1090: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1115: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1270: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1271: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1392: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1457: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1487: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1538: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1814: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1815: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1917: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1944: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/1945: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/2006: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/209: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/214: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/244: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/249: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/265: 3 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/288: 1 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/344: 0 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/41: 2 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/457: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/484: 4 overlaps
Prolactin Signaling WP2037 x https://identifiers.org/aop.events/890: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1090: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1115: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1270: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1271: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1392: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1457: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1487: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1538: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1814: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1815: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1917: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1944: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/1945: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/2006: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/209: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/214: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/244: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/249: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/265: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/288: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/344: 0 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/41: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/457: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/484: 1 overlaps
Prostaglandin Synthesis And Regulation WP98 x https://identifiers.org/aop.events/890: 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/1270: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1271: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1392: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1457: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1487: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1538: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1814: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1815: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1917: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1944: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/1945: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/2006: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/209: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/214: 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/265: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/288: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/344: 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/484: 0 overlaps
Proteoglycan Biosynthesis WP4784 x https://identifiers.org/aop.events/890: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1090: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1115: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1270: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1271: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1392: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1457: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1487: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1538: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1814: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1815: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1917: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1944: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/1945: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/2006: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/209: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/214: 1 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/244: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/249: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/265: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/288: 1 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/344: 0 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/41: 2 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/457: 1 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/484: 1 overlaps
Proximal Tubule Transport WP4917 x https://identifiers.org/aop.events/890: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1090: 2 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1115: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1270: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1271: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1392: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1457: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1487: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1538: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1814: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1815: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1917: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1944: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/1945: 2 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/2006: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/209: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/214: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/244: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/249: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/265: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/288: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/344: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/41: 0 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/457: 2 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/484: 2 overlaps
ROBO4 And VEGF Signaling Crosstalk WP3943 x https://identifiers.org/aop.events/890: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1090: 6 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1115: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1270: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1271: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1392: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1457: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1487: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1538: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1814: 3 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1815: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1917: 1 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1944: 1 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/1945: 18 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/2006: 3 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/209: 1 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/214: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/244: 4 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/249: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/265: 5 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/288: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/344: 0 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/41: 2 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/457: 6 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/484: 7 overlaps
Ras Signaling WP4223 x https://identifiers.org/aop.events/890: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1090: 8 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1115: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1270: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1271: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1392: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1457: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1487: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1538: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1814: 3 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1815: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1917: 1 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1944: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/1945: 8 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/2006: 3 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/209: 2 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/214: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/244: 4 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/249: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/265: 4 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/288: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/344: 0 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/41: 2 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/457: 6 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/484: 7 overlaps
Regulation Of Actin Cytoskeleton WP51 x https://identifiers.org/aop.events/890: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1090: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1115: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1270: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1271: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1392: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1457: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1487: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1538: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1814: 1 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1815: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1917: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1944: 1 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/1945: 1 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/2006: 1 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/209: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/214: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/244: 1 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/249: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/265: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/288: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/344: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/41: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/457: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/484: 0 overlaps
Rett Syndrome WP4312 x https://identifiers.org/aop.events/890: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1090: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1115: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1270: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1271: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1392: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1457: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1487: 2 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1538: 3 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1814: 1 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/1917: 4 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1944: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/1945: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/2006: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/209: 4 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/214: 0 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: 3 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/288: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/344: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/41: 4 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: 0 overlaps
Selenium Metabolism And Selenoproteins WP28 x https://identifiers.org/aop.events/890: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1090: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1115: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1270: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1271: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1392: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1457: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1487: 3 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1538: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1814: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1815: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1917: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1944: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/1945: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/2006: 1 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/209: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/214: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/244: 6 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/249: 4 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/265: 5 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/288: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/344: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/41: 7 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/457: 2 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/484: 0 overlaps
Selenium Micronutrient Network WP15 x https://identifiers.org/aop.events/890: 4 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/1270: 0 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: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1487: 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/1814: 5 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/1917: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/1944: 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: 5 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/209: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/214: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/244: 5 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/265: 2 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/288: 0 overlaps
Small Cell Lung Cancer WP4658 x https://identifiers.org/aop.events/344: 0 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: 9 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/890: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1090: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1115: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1270: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1271: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1392: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1457: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1487: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1538: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1814: 1 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1815: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1917: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1944: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/1945: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/2006: 1 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/209: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/214: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/244: 1 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/249: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/265: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/288: 1 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/344: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/41: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/457: 3 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/484: 0 overlaps
Statin Inhibition Of Cholesterol Production WP430 x https://identifiers.org/aop.events/890: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1090: 1 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1115: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1270: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1271: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1392: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1457: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1487: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1538: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1814: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1815: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1917: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1944: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/1945: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/2006: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/209: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/214: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/244: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/249: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/265: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/288: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/344: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/41: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/457: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/484: 0 overlaps
Striated Muscle Contraction Pathway WP383 x https://identifiers.org/aop.events/890: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1090: 3 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1115: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1270: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1271: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1392: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1457: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1487: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1538: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1814: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1815: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1917: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1944: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/1945: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/2006: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/209: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/214: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/244: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/249: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/265: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/288: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/344: 0 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/41: 1 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/457: 4 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/484: 3 overlaps
Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706 x https://identifiers.org/aop.events/890: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1090: 2 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1115: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1270: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1271: 2 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1392: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1457: 5 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1487: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1538: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1814: 1 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1815: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1917: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1944: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/1945: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/2006: 1 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/209: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/244: 1 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/249: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/265: 2 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/344: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/41: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/457: 1 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/484: 0 overlaps
TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859 x https://identifiers.org/aop.events/890: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1090: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1115: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1270: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1271: 8 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1392: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1457: 2 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1487: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1538: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1814: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1815: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1917: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1944: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/1945: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/2006: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/209: 2 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/244: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/249: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/265: 8 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/344: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/41: 0 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/457: 3 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/484: 1 overlaps
TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816 x https://identifiers.org/aop.events/890: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1090: 9 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1115: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1270: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1271: 5 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1392: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1457: 2 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1487: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1538: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1814: 6 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/1917: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1944: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/1945: 9 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/2006: 6 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/209: 3 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/214: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/244: 6 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/249: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/265: 8 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/288: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/344: 0 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/41: 2 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/457: 8 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/484: 7 overlaps
TGF Beta Signaling Pathway WP366 x https://identifiers.org/aop.events/890: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1090: 2 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1115: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1270: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1271: 4 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1392: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1457: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1487: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1538: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1814: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1815: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1917: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1944: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/1945: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/2006: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/209: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/214: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/244: 1 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/249: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/265: 4 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/288: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/344: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/41: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/457: 3 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/484: 0 overlaps
TGFB Smad Signaling WP5382 x https://identifiers.org/aop.events/890: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1090: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1115: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1270: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1271: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1392: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1457: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1487: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1538: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1814: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1815: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1917: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1944: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1945: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/2006: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/209: 2 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/214: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/244: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/249: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/265: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/288: 2 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/344: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/41: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/457: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/484: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/890: 1 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/1270: 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/1392: 3 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1457: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1487: 5 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/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/1917: 5 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/1944: 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/209: 5 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/214: 1 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/244: 5 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/288: 1 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/344: 0 overlaps
Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525 x https://identifiers.org/aop.events/41: 6 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/890: 3 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/1115: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1270: 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/1487: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1538: 2 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/1917: 5 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/1944: 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/209: 5 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/214: 0 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/249: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/265: 2 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/288: 0 overlaps
Transcriptional Activation By NRF2 In Response To Phytochemicals WP3 x https://identifiers.org/aop.events/344: 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: 0 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/890: 2 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1090: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1115: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1270: 1 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1271: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1392: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1457: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1487: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1538: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1814: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1815: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1917: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1944: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/1945: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/2006: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/209: 1 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/214: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/244: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/249: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/265: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/288: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/344: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/41: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/457: 1 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/484: 0 overlaps
Triacylglyceride Synthesis WP325 x https://identifiers.org/aop.events/890: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1090: 5 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/1270: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1271: 0 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/1457: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1487: 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/1814: 1 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/1917: 3 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/1944: 0 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: 1 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/209: 4 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/214: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/244: 4 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: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/288: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/344: 0 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/41: 4 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/457: 5 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/484: 6 overlaps
Type 2 Papillary Renal Cell Carcinoma WP4241 x https://identifiers.org/aop.events/890: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1090: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1115: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1270: 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/1392: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1457: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1487: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1538: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1814: 1 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1815: 1 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1917: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1944: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/1945: 1 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/209: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/214: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/244: 1 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/249: 0 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/288: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/344: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/41: 0 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/457: 2 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/484: 1 overlaps
Type I Collagen Synthesis Osteogenesis Imperfecta WP4786 x https://identifiers.org/aop.events/890: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1090: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1115: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1270: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1271: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1392: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1457: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1487: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1538: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1814: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1815: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1917: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1944: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/1945: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/2006: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/209: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/214: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/244: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/249: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/265: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/288: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/344: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/41: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/457: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/484: 0 overlaps
Tyrosine Metabolism And Related Disorders WP4506 x https://identifiers.org/aop.events/890: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1090: 12 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1115: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1270: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1271: 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/1457: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1487: 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/1814: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1815: 1 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1917: 3 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1944: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/1945: 10 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/2006: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/209: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/214: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/244: 7 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/249: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/265: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/288: 0 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/344: 2 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/41: 4 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/457: 6 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/484: 8 overlaps
VEGFA VEGFR2 Signaling WP3888 x https://identifiers.org/aop.events/890: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1090: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1115: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1270: 1 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1271: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1392: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1457: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1487: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1538: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1814: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1815: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1917: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1944: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/1945: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/2006: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/209: 1 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/214: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/244: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/249: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/265: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/288: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/344: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/41: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/457: 1 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/484: 0 overlaps
Vitamin D Metabolism WP1531 x https://identifiers.org/aop.events/890: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1090: 5 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1115: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1270: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1271: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1392: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1457: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1487: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1538: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1814: 3 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1815: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1917: 2 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1944: 0 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1945: 4 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/2006: 3 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/209: 7 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/214: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/244: 5 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/249: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/265: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/288: 2 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/344: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/41: 4 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/457: 7 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/484: 6 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/890: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1090: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1115: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1270: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1271: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1392: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1457: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1487: 2 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1538: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1814: 2 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1815: 2 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1917: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1944: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/1945: 2 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/2006: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/209: 4 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/214: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/244: 4 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/249: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/265: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/288: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/344: 0 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/41: 3 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/457: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/484: 1 overlaps
Vitamin D Sensitive Calcium Signaling In Depression WP4698 x https://identifiers.org/aop.events/890: 3 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1090: 12 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1115: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1270: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1271: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1392: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1457: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1487: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1538: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1814: 4 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1815: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1917: 1 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1944: 1 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/1945: 2 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/2006: 4 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/209: 17 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/214: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/244: 5 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/249: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/265: 1 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/288: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/344: 0 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/41: 1 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/457: 1 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/484: 2 overlaps
Wnt Signaling WP428 x https://identifiers.org/aop.events/890: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1090: 13 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1115: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1270: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1271: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1392: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1457: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1487: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1538: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1814: 4 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1815: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1917: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1944: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/1945: 1 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/2006: 4 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/209: 13 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/214: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/244: 4 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/249: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/265: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/288: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/344: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/41: 0 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/457: 1 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/484: 1 overlaps
lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258 x https://identifiers.org/aop.events/890: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1090: 2 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1115: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1270: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1271: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1392: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1457: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1487: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1538: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1814: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1815: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1917: 2 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1944: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/1945: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/2006: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/209: 2 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/214: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/244: 2 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/249: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/265: 1 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/288: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/344: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/41: 2 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/457: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/484: 0 overlaps
mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953 x https://identifiers.org/aop.events/890: 1 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1090: 5 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1115: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1270: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1271: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1392: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1457: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1487: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1538: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1814: 5 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1815: 1 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1917: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1944: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/1945: 7 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/2006: 5 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/209: 2 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/214: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/244: 5 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/249: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/265: 2 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/288: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/344: 0 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/41: 1 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/457: 5 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/484: 7 overlaps
miRNA Regulation Of Prostate Cancer Signaling WP3981 x https://identifiers.org/aop.events/890: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1090: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1115: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1270: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1271: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1392: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1457: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1487: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1538: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1814: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1815: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1917: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1944: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/1945: 4 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/2006: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/209: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/214: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/244: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/249: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/265: 1 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/288: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/344: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/41: 0 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/457: 5 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/484: 6 overlaps
miRNA Targets In ECM And Membrane Receptors WP2911 x https://identifiers.org/aop.events/890: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1090: 12 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1115: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1270: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1271: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1392: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1457: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1487: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1538: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1814: 4 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1815: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1917: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1944: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/1945: 1 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/2006: 4 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/209: 13 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/214: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/244: 4 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/249: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/265: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/288: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/344: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/41: 0 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/457: 1 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 x https://identifiers.org/aop.events/484: 1 overlaps
ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336 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: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA6'}, number: 2
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'NRXN1'}, number: 1
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'ITGA6'}, number: 2
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'TIMP1'}, number: 1
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGA6'}, number: 2
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGA6'}, number: 2
Term: 11P11 2 Copy Number Variation Syndrome WP5348, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A6', 'UGT1A7', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 5
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A6', 'UGT1A7', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 5
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A6', 'UGT1A7', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 5
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9', 'UGT1A6', 'UGT1A1'}, number: 4
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A6', 'UGT1A7', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 5
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'MEF2A', 'ABCA1'}, number: 3
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: 2Q37 Copy Number Variation Syndrome WP5224, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DEPTOR', 'PDGFRB'}, number: 2
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'XDH'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'XDH'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'XDH'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'NRXN2', 'NRXN1', 'NLGN1', 'NRXN3', 'GRIN2B'}, number: 5
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ATG16L1', 'GRIN2B', 'PRKCA', 'DEPTOR', 'PDGFRB', 'ABL2', 'PIK3R1'}, number: 7
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'XDH', 'PRKCA', 'DEPTOR'}, number: 3
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'XDH'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'XDH', 'PIK3R1'}, number: 2
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2C19'}, number: 1
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'ADRA1A'}, number: 3
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3R1', 'PDGFRB'}, number: 2
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PDGFRB'}, number: 3
Term: ADHD And Autism ASD Pathways WP5420, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FZD1', 'WWTR1', 'CDKN1A', 'HIF1A', 'PPARGC1A'}, number: 5
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'PPARA', 'LPL', 'PCK1'}, number: 3
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'SERPINE1'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'CDKN1A'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4'}, number: 1
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A', 'PCK1', 'PRLR'}, number: 3
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'CDKN1A'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A4', 'LPL', 'FZD1', 'PPARA', 'PCK1', 'CDKN1A', 'SERPINE1'}, number: 7
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'CDKN1A', 'SLC2A4'}, number: 3
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD3', 'SERPINE1'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4', 'IRS2', 'PPARGC1A'}, number: 4
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MEF2A', 'NAMPT', 'LPL', 'NR3C1', 'IRS2', 'SLC2A4', 'PCK1', 'PRLR', 'PPARA', 'BMP2', 'ID3', 'PPARGC1A', 'EPAS1', 'FZD1', 'CDKN1A', 'SERPINE1', 'IL6ST', 'SMAD3', 'PNPLA3', 'WWTR1', 'RARA', 'HIF1A'}, number: 22
Term: Adipogenesis WP236, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'EPAS1', 'PCK1', 'PRLR', 'CDKN1A', 'HIF1A', 'IRS2', 'PPARGC1A'}, number: 8
Term: Adipogenesis WP236, 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/1090, Title of overlapping gene(s): {'SHC1', 'LAMB1', 'SOS1', 'ITGB4', 'ITGA6', 'LAMA1'}, 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/1270, Title of overlapping gene(s): set(), number: 0
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): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
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/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/1944, 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): {'SHC1', 'LAMB1', 'SOS1', 'PRKCA', 'ITGB4', 'ITGA6', 'PIK3R1', 'LAMA1'}, number: 8
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'IRS2'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'SOS1', 'SHC1', 'PIK3R1'}, number: 4
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/265, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'IRS2'}, number: 1
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'IRS2'}, number: 3
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LAMB1', 'SOS1', 'ITGB4', 'ITGA6', 'PIK3R1', 'LAMA1', 'IRS2'}, number: 7
Term: Alpha 6 Beta 4 Signaling WP244, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'LAMB1', 'SOS1', 'PRKCA', 'ITGB4', 'ITGA6', 'PIK3R1', 'LAMA1', 'IRS2'}, number: 8
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 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/1115, 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/1270, 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/1392, 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/1457, 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/1487, 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/1538, 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/1917, 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/1944, 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/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/214, 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/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/249, 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/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/288, 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/344, 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/41, 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/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/890, 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'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'PCK1'}, number: 1
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/1392, Title of overlapping gene(s): {'GSR'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'IDH1', 'GCLM', 'GSR'}, number: 3
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GSR'}, number: 1
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/1917, Title of overlapping gene(s): {'GCLM', 'GSR'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/1944, 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): {'PCK1'}, number: 1
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/209, Title of overlapping gene(s): {'IDH1', 'GCLM', 'PCK1', 'GSR'}, number: 4
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/214, 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): {'GCLM', 'GSR'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GSR'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GSR'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/344, 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): {'GCLM', 'GSR'}, number: 2
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: Amino Acid Metabolism WP3925, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GSR'}, number: 1
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1'}, number: 1
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'EPAS1'}, number: 2
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'EPAS1'}, number: 2
Term: Amplification And Expansion Of Oncogenic Pathways WP3678, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SHC1', 'SOS1', 'MAP4K2', 'SLC2A1', 'MAP3K1'}, number: 5
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PCK1'}, number: 3
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1', 'MAP3K1'}, number: 4
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4', 'SLC2A1'}, number: 2
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'PCK1', 'SHC1'}, number: 4
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1', 'MAP3K1'}, number: 4
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A4', 'LPL', 'CYP7A1', 'PCK1', 'SLC2A1'}, number: 5
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP7A1', 'IRS2'}, number: 2
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'SHC1', 'SOS1', 'SLC2A1', 'PIK3R1', 'MAP3K1'}, number: 6
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1', 'IRS2'}, number: 3
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A4', 'CYP7A1', 'SLC2A1', 'PIK3R1', 'IRS2'}, number: 5
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'SLC2A4', 'LPL', 'CYP7A1', 'SOS1', 'PCK1', 'SLC2A1', 'PIK3R1', 'IRS2'}, number: 9
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'SOS1', 'PCK1', 'SLC2A1', 'PIK3R1', 'IRS2'}, number: 6
Term: Angiopoietin Like Protein 8 Regulatory Pathway WP3915, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'HIF1A'}, number: 2
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3'}, number: 2
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'COL1A1'}, number: 1
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3'}, number: 2
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'HIF1A', 'SMAD3', 'COL1A1', 'IL6ST'}, number: 4
Term: Angiotensin II Receptor Type 1 Pathway WP5036, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL1A1', 'HIF1A'}, number: 2
Term: Angiotensin II Receptor Type 1 Pathway WP5036, 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/1090, 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/1115, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1270, 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/1271, 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/1392, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1457, 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/1487, Title of overlapping gene(s): {'GCLM', 'GCLC'}, number: 2
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): {'NFE2L2', 'GCLC'}, number: 2
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): {'NFE2L2'}, number: 1
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): {'NFE2L2'}, number: 1
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): {'NFE2L2', 'SLC7A11', 'GCLM', 'GCLC'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/1944, 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): {'IKBKG'}, number: 1
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): set(), number: 0
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): {'NFE2L2', 'SLC7A11', 'GCLM', 'GCLC'}, number: 4
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/214, 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/244, Title of overlapping gene(s): {'NFE2L2', 'SLC7A11', 'GCLM', 'GCLC'}, number: 4
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): {'NFE2L2', 'GCLC'}, number: 2
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): {'NFE2L2', 'GCLC', 'IKBKG'}, number: 3
Term: Antiviral And Anti-Inflam Effects Of Nrf2 On SARS CoV 2 Pathway WP5113, KEID: https://identifiers.org/aop.events/288, 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/344, 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): {'NFE2L2', 'SLC7A11', 'GCLM', 'GCLC'}, number: 4
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): {'IKBKG'}, 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): {'IKBKG'}, number: 1
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): {'NFE2L2', 'GCLC'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDKN1A', 'CUL1', 'PAK2'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1270, 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/1271, Title of overlapping gene(s): {'THBS1'}, 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): {'GCLC'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1457, 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/1487, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1815, 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/1917, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/1944, 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/1945, Title of overlapping gene(s): {'PAK2', 'THBS1', 'CDKN1A', 'CDKN1B', 'PKN1'}, number: 5
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, 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): {'THBS1', 'CDKN1A', 'GCLC'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/214, 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/244, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'GCLC'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'THBS1', 'GCLC'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/288, 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/344, 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/41, Title of overlapping gene(s): {'CDKN1A', 'GCLC'}, number: 2
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'THBS1', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'THBS1', 'CDKN1A', 'CDKN1B', 'PKN1'}, number: 4
Term: Apoptosis Related Network Due To Altered Notch3 Ovarian Cancer WP2864, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ACTB', 'ACTG1', 'ITGB4', 'ITGA6'}, number: 7
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ITGB4', 'ITGA11', 'ITGA6'}, number: 6
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'ITGB4', 'ITGA11', 'ITGA6'}, number: 5
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ITGB4', 'ITGA11', 'ITGA6'}, number: 6
Term: Arrhythmogenic Right Ventricular Cardiomyopathy WP2118, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'CDKN1A'}, number: 2
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2', 'CYP1A1', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2', 'CYP1A1', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLC'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2', 'CYP1A1', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL', 'CYP1A1', 'NFE2L2', 'CDKN1A', 'GCLC'}, number: 5
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NFE2L2', 'CDKN1A', 'CDKN1B', 'GCLC'}, number: 4
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2', 'CYP1A1', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'CYP1A1', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NFE2L2', 'CDKN1A', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'CDKN1B', 'LPL'}, number: 4
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2', 'CYP1A1', 'GCLC'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC7A5'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6', 'NFE2L2', 'CYP1A1'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6', 'NFE2L2', 'CYP1A1'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6', 'NFE2L2', 'CYP1A1'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2', 'CDKN1B'}, number: 2
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A7', 'ALDH3A1', 'NFE2L2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 7
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1B'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1B'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A7', 'ALDH3A1', 'CYP1A1', 'NFE2L2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A7', 'ALDH3A1', 'NFE2L2', 'UGT1A9', 'CDKN1B', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6', 'NFE2L2', 'CYP1A1'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6', 'NFE2L2', 'CYP1A1'}, number: 3
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 4
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A7', 'ALDH3A1', 'NFE2L2', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 7
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1B'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1B'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6', 'NFE2L2', 'CYP1A1'}, number: 3
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Arylamine Metabolism WP694, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'WNT5A'}, number: 2
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'WNT5A'}, number: 2
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Axon Guidance WP5289, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DKK1'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD9'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD9'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'BMP2'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: BMP2 WNT4 FOXO1 Pathway Primary Endometrial Stromal Cell Diff WP3876, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'MMP2', 'CCND1'}, number: 4
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/1270, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1'}, number: 1
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/1457, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
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/1814, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A', 'ERBB2', 'CCND1'}, number: 4
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCND1', 'THBS1', 'CDKN1A', 'VEGFA', 'PIK3R1'}, number: 5
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A', 'ERBB2', 'CCND1'}, number: 4
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1', 'CDKN1A', 'CCND1'}, number: 3
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A', 'ERBB2', 'CCND1'}, number: 4
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/265, Title of overlapping gene(s): {'THBS1', 'PIK3R1'}, number: 2
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP2'}, number: 1
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A'}, number: 2
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'THBS1', 'CDKN1A', 'PIK3R1'}, number: 4
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND1', 'THBS1', 'CDKN1A', 'VEGFA', 'PIK3R1'}, number: 5
Term: Bladder Cancer WP2828, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'MMP2', 'PDGFRB', 'VEGFA', 'SFRP2'}, number: 5
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST', 'SMAD3'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'SMAD3'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2', 'COL1A1', 'PDGFRB', 'VEGFA'}, number: 4
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'SMAD3'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'SFRP2'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'SMAD3', 'TGFB2'}, number: 3
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'FST', 'SMAD3'}, number: 2
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'TIMP1', 'MMP2', 'MMP28'}, number: 3
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'SMAD3', 'COL1A1', 'PDGFRB'}, number: 4
Term: Burn Wound Healing WP5055, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'COL1A1', 'PDGFRB', 'VEGFA'}, number: 4
Term: Burn Wound Healing WP5055, 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/1090, Title of overlapping gene(s): {'ITGA3', 'LRP5', 'ITGA6', 'LAMA1', 'SOS1', 'COL4A6', 'TGFA', 'BCL2', 'FZD1', 'MMP2', 'CDKN1A', 'PDGFRB', 'SLC2A1', 'VEGFA', 'WNT5A', 'CUL1', 'WNT7B', 'LAMB1', 'FZD7', 'CCND1', 'RASSF5', 'HIF1A'}, number: 22
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'NFE2L2', 'CDKN1A', 'ERBB2', 'CDKN1B', 'PIK3R1', 'WNT5A', 'BCL2L11'}, number: 12
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2', 'NFE2L2', 'BCL2L11'}, number: 3
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXNRD1', 'TGFA', 'PRKCA', 'TGFB2', 'NFE2L2', 'SLC2A1'}, number: 6
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'PRKCA', 'ITGA6', 'LAMA1', 'IKBKG', 'SOS1', 'PLD1', 'COL4A6', 'PLD2', 'TGFA', 'BCL2', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'VEGFA', 'PIK3R1', 'LAMB1', 'CCND1', 'RASSF5', 'BCL2L11'}, number: 21
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'ERBB2', 'CDKN1B', 'PIK3R1', 'WNT5A', 'BCL2L11'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'TXNRD1', 'WNT7B', 'TGFA', 'LRP5', 'FZD1', 'ROCK2', 'FZD7', 'CCND1', 'PRKCA', 'NFE2L2', 'CDKN1A', 'TGFB2', 'SLC2A1', 'NOTCH1', 'WNT5A'}, number: 16
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TXNRD1', 'WNT7B', 'TGFA', 'BCL2', 'SOS1', 'CCND1', 'PRKCA', 'NFE2L2', 'CDKN1A', 'CDKN1B', 'TGFB2', 'SLC2A1', 'ERBB2', 'PIK3R1', 'WNT5A', 'BCL2L11'}, number: 17
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1'}, number: 2
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GNG10', 'TGFBR1', 'TXNRD1', 'SMAD3', 'ADCY9', 'SOS1', 'ROCK2', 'ADCY8', 'NFE2L2', 'PIK3R1', 'IKBKG'}, number: 11
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP2'}, number: 1
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXNRD1', 'TGFA', 'PRKCA', 'CDKN1A', 'NFE2L2', 'TGFB2', 'SLC2A1', 'PIK3R1'}, number: 8
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'ITGA6', 'LAMA1', 'IKBKG', 'SOS1', 'COL4A6', 'BMP2', 'EPAS1', 'FZD1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'SLC2A1', 'VEGFA', 'PIK3R1', 'IL6ST', 'SMAD3', 'LAMB1', 'RARA', 'HIF1A'}, number: 21
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'PRKCA', 'ITGA6', 'LAMA1', 'IKBKG', 'SOS1', 'COL4A6', 'TGFA', 'BCL2', 'EPAS1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'SLC2A1', 'VEGFA', 'PIK3R1', 'LAMB1', 'CCND1', 'HIF1A', 'BCL2L11'}, number: 21
Term: Cancer Pathways WP5434, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'IKBKG'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'MAP3K1'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'PRKCA'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'MAP3K1'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'IKBKG'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'MEF2A', 'IKBKG'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'IKBKG'}, number: 2
Term: Cardiac Hypertrophic Response WP2795, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PLTP', 'CYP27A1'}, number: 4
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PLTP', 'CYP27A1'}, number: 4
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'CYP27A1', 'ABCA1'}, number: 4
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Cholesterol Metabolism WP5304, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC2A1', 'MMP14', 'MMP2'}, number: 3
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'SLC2A1'}, number: 2
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'SLC2A1'}, number: 2
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'SLC2A1'}, number: 2
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP16', 'MMP7', 'MMP14', 'MMP2', 'MMP28'}, number: 5
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'SLC2A1'}, number: 2
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'SLC2A1'}, number: 2
Term: Chronic Hyperglycemia Impairment Of Neuron Function WP5283, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CUL1', 'PPARGC1A'}, number: 2
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'PPARA'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'NLGN1'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1', 'ROCK2', 'PPARA'}, number: 3
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SERPINE1', 'ROCK2'}, number: 2
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NAMPT', 'PPARA', 'SERPINE1', 'ID3', 'PPARGC1A'}, number: 5
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Circadian Rhythm Genes WP3594, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'DKK1', 'LRP5', 'WNT5A'}, number: 4
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'RUNX2', 'SMAD9'}, number: 2
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'WNT5A'}, number: 2
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2', 'ATG16L1'}, number: 2
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'WNT5A'}, number: 2
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'DKK1', 'LRP5', 'WNT5A'}, number: 4
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'WNT5A'}, number: 2
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RUNX2', 'SMAD9'}, number: 2
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'BMP2'}, number: 1
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Clock Controlled Autophagy In Bone Metabolism WP5205, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC2', 'ABCC3'}, number: 2
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A1'}, number: 5
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Codeine And Morphine Metabolism WP1604, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Complement Activation WP545, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CX3CL1', 'TGFB2'}, number: 2
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CX3CL1'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3'}, number: 1
Term: Complement System In Neuronal Development And Plasticity WP5090, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'PPARGC1A'}, number: 3
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'SMC1A', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 7
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'UGT1A1', 'CYP2C19', 'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'PPARGC1A'}, number: 9
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A1', 'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'PPARGC1A'}, number: 7
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'PPARGC1A'}, number: 2
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Constitutive Androstane Receptor Pathway WP2875, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GHR', 'PRLR'}, number: 2
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'CX3CL1'}, number: 2
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'CX3CL1', 'CCL28', 'CXCL13', 'CCL15'}, number: 5
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LEPR', 'TGFB2'}, number: 2
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IL6ST', 'GHR', 'PRLR'}, number: 3
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'GHR', 'PRLR'}, number: 2
Term: Cytokine Cytokine Receptor Interaction WP5473, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SHC1', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'FOSL1', 'WNT5A', 'MAP3K1'}, number: 9
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR', 'SMAD3', 'SHC1', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'ERBB2', 'CDKN1B', 'MAP3K1', 'FOSL1', 'PIK3R1', 'WNT5A', 'BCL2L11', 'PIK3C2B'}, number: 16
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2', 'BCL2L11'}, number: 2
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'SHC1', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 8
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR', 'SMAD3', 'SHC1', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'ERBB2', 'CDKN1B', 'MAP3K1', 'FOSL1', 'PIK3R1', 'WNT5A', 'BCL2L11', 'PIK3C2B'}, number: 16
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'WNT7B', 'CCND1', 'CDKN1A', 'FOSL1', 'WNT5A'}, number: 5
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR', 'SMAD3', 'SHC1', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'ERBB2', 'CDKN1B', 'MAP3K1', 'FOSL1', 'PIK3R1', 'WNT5A', 'BCL2L11', 'PIK3C2B'}, number: 16
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD3', 'SOS1', 'SHC1', 'PIK3R1'}, number: 4
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'PIK3R1', 'CDKN1A'}, number: 3
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SOS1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'PIK3C2B'}, number: 6
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11', 'PIK3C2B'}, number: 8
Term: DNA Damage Response Only ATM Dependent WP710, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2', 'CCND1'}, number: 2
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFB2', 'CCND1'}, number: 2
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'FST'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'BMP2', 'RARA'}, number: 2
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Development Of Ureteric Derived Collecting System WP5053, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP27A1'}, number: 3
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC2', 'ABCC3'}, number: 2
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'ABCC2', 'ABCC3', 'CYP27A1'}, number: 5
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'ABCC2', 'BAAT', 'ABCC3'}, number: 5
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC2', 'ABCC3'}, number: 2
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'ABCC2', 'BAAT', 'ABCC3'}, number: 5
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'ABCC2', 'BAAT', 'ABCC3'}, number: 5
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'CYP27A1'}, number: 2
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Disorders Of Bile Acid Synthesis And Biliary Transport WP5176, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D', 'NRXN1', 'NRXN2', 'NLGN1', 'NRXN3', 'GRIN2B', 'YWHAG'}, number: 7
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D'}, number: 1
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Disruption Of Postsynaptic Signaling By CNV WP4875, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'CYP7A1'}, number: 3
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'CYP7A1', 'BAAT'}, number: 4
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'CYP7A1', 'BAAT'}, number: 4
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'CYP7A1', 'BAAT'}, number: 4
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Drug Induction Of Bile Acid Pathway WP2289, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Drug Induction Of Bile Acid Pathway WP2289, 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/1090, Title of overlapping gene(s): {'SHC1', 'TGFA', 'BCL2', 'SOS1', 'CCND1', 'PDGFRB', 'VEGFA', 'KDR'}, number: 8
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/1270, 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): 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/1457, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'SHC1', 'BCL2', 'SOS1', 'CCND1', 'ERBB2', 'PIK3R1', 'BCL2L11'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2', 'BCL2L11'}, number: 2
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'PRKCA'}, number: 2
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'MRAS', 'SHC1', 'TGFA', 'BCL2', 'SOS1', 'CCND1', 'BCL2L11', 'PRKCA', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 12
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SHC1', 'BCL2', 'SOS1', 'CCND1', 'ERBB2', 'PIK3R1', 'BCL2L11'}, number: 7
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'CCND1'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'TGFA', 'BCL2', 'SOS1', 'CCND1', 'PRKCA', 'ERBB2', 'PIK3R1', 'BCL2L11'}, 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): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'PIK3R1'}, number: 3
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SOS1', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 5
Term: EGFR Tyrosine Kinase Inhibitor Resistance WP4806, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA', 'BCL2', 'SOS1', 'CCND1', 'BCL2L11', 'PRKCA', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 10
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/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ACTB', 'ACTG1', 'ITGA6'}, number: 6
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1538, 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): {'PIK3R1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1815, 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): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ITGA6', 'PIK3R1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGA6', 'PIK3R1', 'ITGB3'}, number: 4
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ITGA6', 'PIK3R1'}, number: 5
Term: Ebola Virus Infection In Host WP4217, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDH6', 'PODXL'}, number: 2
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'CDH6'}, number: 1
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'NLGN1'}, number: 1
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Ectoderm Differentiation WP2858, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'GHR'}, number: 2
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CAB39', 'TGFB2'}, number: 2
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'CAB39', 'GHR'}, number: 3
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'CAB39', 'GHR'}, number: 3
Term: Endochondral Ossification WP474, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'GHR'}, number: 2
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CAB39', 'TGFB2'}, number: 2
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'CAB39', 'GHR'}, number: 3
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'CAB39', 'GHR'}, number: 3
Term: Endochondral Ossification With Skeletal Dysplasias WP4808, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DKK1', 'WWC1'}, number: 2
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'DKK1'}, number: 2
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'SMAD3', 'FOXA1'}, number: 3
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FOXA1'}, number: 1
Term: Endoderm Differentiation WP2853, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'SOS1'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1270, 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): {'SMAD3'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'SOS1'}, number: 2
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/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/1944, 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): {'SOS1'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'SOS1'}, 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/214, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'SOS1', 'TGFB2'}, number: 3
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'ADCY9', 'SMAD3', 'SOS1', 'ADCY8'}, number: 4
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SOS1'}, number: 2
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SOS1'}, number: 1
Term: Envelope Proteins And Potential Roles In EDMD Physiopathology WP4535, 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/1090, Title of overlapping gene(s): {'SHC1', 'WNT7B', 'LRP5', 'SOS1', 'FZD1', 'MMP2', 'FZD7', 'COL4A6', 'HIF1A', 'WNT5A'}, number: 10
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/1270, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3'}, number: 2
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/1457, Title of overlapping gene(s): {'SMAD3', 'ID1'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
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/1814, Title of overlapping gene(s): {'SMAD3', 'SHC1', 'WNT7B', 'SOS1', 'PIK3R1', 'WNT5A'}, number: 6
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/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'COL4A6', 'SHC1'}, number: 4
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'SHC1', 'WNT7B', 'SOS1', 'PIK3R1', 'WNT5A'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'WNT7B', 'LRP5', 'FZD1', 'FZD7', 'TGFB2', 'NOTCH1', 'WNT5A'}, number: 7
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'SHC1', 'WNT7B', 'SOS1', 'TGFB2', 'PIK3R1', 'WNT5A'}, number: 7
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/265, Title of overlapping gene(s): {'SMAD3', 'TGFBR1', 'SHC1', 'SOS1', 'PIK3R1'}, number: 5
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP2'}, number: 1
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'TGFB2'}, number: 2
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'FZD1', 'SOS1', 'COL4A6', 'PIK3R1', 'HIF1A'}, number: 6
Term: Epithelial To Mesenchymal Transition In Colorectal Cancer WP4239, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'HIF1A', 'COL4A6'}, number: 4
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/1090, Title of overlapping gene(s): {'PAK2', 'SHC1', 'TGFA', 'SOS1', 'CCND1', 'CDKN1A', 'AREG'}, number: 7
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'ERBB2', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 8
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/1917, Title of overlapping gene(s): {'TGFA', 'PRKCA'}, number: 2
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D'}, number: 1
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PAK2', 'SHC1', 'TGFA', 'SOS1', 'CCND1', 'PRKCA', 'CDKN1A', 'CDKN1B', 'ABL2', 'PIK3R1', 'BCL2L11'}, number: 11
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'ERBB2', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 8
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'TGFA', 'CCND1', 'PRKCA', 'CDKN1A'}, number: 5
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'TGFA', 'SOS1', 'CCND1', 'PRKCA', 'CDKN1A', 'ERBB2', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 10
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'CDKN1A', 'PIK3R1'}, number: 4
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CDKN1A', 'SOS1', 'CDKN1B', 'PIK3R1'}, number: 4
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA', 'SOS1', 'CCND1', 'PRKCA', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 8
Term: ErbB Signaling WP673, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2C19'}, number: 1
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP5276, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1'}, number: 2
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1'}, number: 2
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1'}, number: 2
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'CYP1A1', 'UGT1A1'}, number: 4
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1'}, number: 2
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1'}, number: 2
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1'}, number: 2
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'ACOX1', 'PPARA', 'PCK1'}, number: 3
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ACOX1', 'PPARA', 'CYP1A1', 'PCK1'}, number: 4
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARA', 'PCK1'}, number: 2
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAFF', 'NFE2L2', 'MAFG'}, number: 3
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFF', 'NFE2L2', 'MAFG'}, number: 3
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFF', 'NFE2L2', 'MAFG'}, number: 3
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MAFF', 'NFE2L2', 'MAFG'}, number: 3
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Ethanol Metabolism Production Of ROS By CYP2E1 WP4269, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TGFA', 'WNT5A'}, number: 2
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'ERBB2', 'WNT5A'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'TGFB2'}, number: 2
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TGFA'}, number: 1
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'ERBB2', 'WNT5A'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'TGFB2', 'WNT5A'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TGFA', 'TGFB2', 'ERBB2', 'WNT5A'}, number: 5
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3'}, number: 3
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA', 'TGFB2'}, number: 2
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA'}, number: 1
Term: Extracellular Vesicle Mediated Signaling In Recipient Cells WP2870, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'IRS2'}, number: 3
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'IRS2'}, number: 3
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'IRS2'}, number: 3
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'IRS2', 'FOXA1'}, number: 2
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IRS2', 'FOXA1'}, number: 2
Term: FOXA2 Pathway WP5066, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 1 WP5108, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GHR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GHR', 'LPL'}, number: 2
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'GHR'}, number: 1
Term: Familial Hyperlipidemia Type 2 WP5109, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 3 WP5110, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 4 WP5111, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL', 'PLTP'}, number: 2
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Familial Hyperlipidemia Type 5 WP5112, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'SLCO2B1', 'CYP8B1', 'IP6K3', 'CYP7A1', 'BAAT', 'IRS2', 'PPARGC1A'}, number: 7
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'SLCO2B1', 'CYP8B1', 'IP6K3', 'CYP7A1', 'BAAT', 'IRS2', 'PPARGC1A'}, number: 7
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLCO2B1', 'CYP8B1', 'IP6K3', 'CYP7A1', 'BAAT', 'IRS2', 'PPARGC1A'}, number: 7
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'IRS2', 'PPARGC1A'}, number: 3
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Farnesoid X Receptor Pathway WP2879, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'ACSL5'}, number: 1
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ACSL5'}, number: 1
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ABCA1'}, number: 1
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Fatty Acids And Lipoproteins Transport In Hepatocytes WP5323, KEID: https://identifiers.org/aop.events/890, 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): {'TXNRD1', 'GCLC'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'ACSL5'}, 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/1392, Title of overlapping gene(s): {'TXNRD1', 'GCLC'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLM', 'GCLC'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'TXNRD1', 'GCLC'}, number: 2
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/1917, Title of overlapping gene(s): {'TXNRD1', 'GCLM', 'FTL', 'GCLC', 'SLC7A11'}, number: 5
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
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/209, Title of overlapping gene(s): {'TXNRD1', 'GCLM', 'FTL', 'ACSL5', 'GCLC', 'SLC7A11'}, number: 6
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'GCLM', 'FTL', 'GCLC', 'SLC7A11'}, number: 5
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'TXNRD1', 'GCLC'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TXNRD1', 'GCLC'}, number: 2
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXNRD1', 'GCLM', 'FTL', 'GCLC', 'SLC7A11'}, number: 5
Term: Ferroptosis WP4313, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
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/890, Title of overlapping gene(s): {'TXNRD1', 'GCLC'}, number: 2
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Fluoroacetic Acid Toxicity WP4966, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'HIF1A', 'FGF7', 'LAMB1', 'SOS1', 'FGF13', 'CDKN1A', 'EFNA5', 'PDGFRB', 'COL4A6', 'SLC2A1', 'VEGFA', 'ITGB4', 'ITGA6', 'LAMA1', 'KDR', 'PPARGC1A'}, number: 18
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1'}, 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): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SOS1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'PIK3C2B'}, number: 5
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/1917, Title of overlapping gene(s): {'SLC2A4', 'FGF13', 'SLC2A1'}, number: 3
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/1944, 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): {'ITGA3', 'GNG10', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'SOS1', 'PRLR', 'COL4A6', 'FGF7', 'CDKN1A', 'EFNA5', 'CDKN1B', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'OSMR', 'LAMB1', 'FGF13', 'THBS1', 'ITGB4', 'TNXB'}, number: 27
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SOS1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'PIK3C2B'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A4', 'FGF13', 'THBS1', 'CDKN1A', 'SLC2A1', 'DDIT4'}, number: 6
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'SOS1', 'FGF13', 'CDKN1A', 'CDKN1B', 'SLC2A1', 'PIK3R1', 'PIK3C2B'}, number: 8
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GNG10', 'SOS1', 'THBS1', 'PIK3R1', 'IKBKG'}, number: 5
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'IRS2', 'PPARGC1A'}, number: 2
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CAB39', 'SLC2A4', 'PFKFB3', 'FGF13', 'CDKN1A', 'SLC2A1', 'PIK3R1', 'IRS2', 'PPARGC1A'}, number: 9
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'COL3A1', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'COL5A1', 'IRS2', 'PIK3C2B', 'SLC2A4', 'PFKFB3', 'SOS1', 'PRLR', 'COL4A6', 'PPARGC1A', 'CAB39', 'FGF7', 'EPAS1', 'CDKN1A', 'EFNA5', 'CDKN1B', 'PDGFRB', 'SLC2A1', 'VEGFA', 'PIK3R1', 'KDR', 'FOXA1', 'ITGB3', 'OSMR', 'RAB10', 'LAMB1', 'FGF13', 'THBS1', 'ITGB4', 'TNXB', 'HIF1A'}, number: 40
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'COL3A1', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'COL5A1', 'IRS2', 'PIK3C2B', 'SLC2A4', 'PFKFB3', 'SOS1', 'PRLR', 'COL4A6', 'PPARGC1A', 'CAB39', 'FGF7', 'EPAS1', 'CDKN1A', 'EFNA5', 'CDKN1B', 'PDGFRB', 'SLC2A1', 'VEGFA', 'PIK3R1', 'KDR', 'FOXA1', 'ITGB3', 'OSMR', 'RAB10', 'LAMB1', 'FGF13', 'THBS1', 'ITGB4', 'TNXB', 'HIF1A'}, number: 40
Term: Focal Adhesion PI3K Akt mTOR Signaling WP3932, 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/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'ACTB', 'SHC1', 'ACTG1', 'PAK2', 'BCL2', 'LAMB1', 'SOS1', 'CCND1', 'PDGFRB', 'ITGB4', 'COL4A6', 'VEGFA', 'ITGA6', 'LAMA1', 'KDR'}, number: 18
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/1270, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1'}, 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): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'SHC1', 'BCL2', 'SOS1', 'CCND1', 'ERBB2', 'PIK3R1'}, number: 6
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'SHC1', 'PRKCA', 'ITGA11', 'ITGA6', 'COL1A1', 'LAMA1', 'ITGA1', 'SOS1', 'COL4A6', 'PAK2', 'BCL2', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'LAMB1', 'CCND1', 'THBS1', 'ITGB4', 'TNXB'}, number: 22
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SHC1', 'BCL2', 'SOS1', 'CCND1', 'ERBB2', 'PIK3R1'}, number: 6
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'ROCK2', 'THBS1', 'CCND1'}, number: 4
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'BCL2', 'SOS1', 'CCND1', 'PRKCA', 'ERBB2', 'PIK3R1'}, number: 7
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/265, Title of overlapping gene(s): {'SHC1', 'SOS1', 'ROCK2', 'THBS1', 'PIK3R1'}, number: 5
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'LAMB1', 'SOS1', 'THBS1', 'ITGA6', 'PDGFRB', 'ITGB4', 'COL4A6', 'ITGA11', 'VEGFA', 'COL1A1', 'PIK3R1', 'LAMA1', 'KDR', 'TNXB'}, number: 16
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'PRKCA', 'ITGA11', 'COL1A1', 'ITGA6', 'LAMA1', 'ITGA1', 'SOS1', 'COL4A6', 'BCL2', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'LAMB1', 'CCND1', 'THBS1', 'ITGB4', 'TNXB'}, number: 20
Term: Focal Adhesion WP306, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: GDNF RET Signaling Axis WP4830, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'CDKN1A'}, number: 2
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'BCL2L11'}, number: 3
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2L11'}, number: 1
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4'}, number: 1
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'CDKN1B', 'BCL2L11'}, number: 4
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'BCL2L11'}, number: 3
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4'}, number: 2
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4', 'CDKN1B', 'BCL2L11'}, number: 4
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4'}, number: 2
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'SLC2A4', 'CDKN1B'}, number: 4
Term: Galanin Receptor Pathway WP4970, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'CDKN1A', 'CDKN1B', 'VEGFA', 'BCL2L11'}, number: 5
Term: Galanin Receptor Pathway WP4970, 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/1090, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'VEGFA'}, number: 5
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1'}, number: 6
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/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'PRKCA', 'CDKN1A', 'CDKN1B', 'VEGFA', 'PIK3R1'}, number: 8
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1'}, number: 6
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'CDKN1A', 'SERPINE1', 'CCND1'}, number: 4
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CCND1', 'PRKCA', 'CDKN1A', 'CDKN1B', 'PIK3R1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SHC1', 'SOS1', 'ARRB1', 'SERPINE1', 'PIK3R1'}, number: 5
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP7'}, number: 1
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'CDKN1A', 'PIK3R1'}, number: 3
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'SOS1', 'CDKN1A', 'SERPINE1', 'CDKN1B', 'BMP2', 'PIK3R1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SOS1', 'CCND1', 'PRKCA', 'CDKN1A', 'CDKN1B', 'VEGFA', 'PIK3R1'}, number: 7
Term: Gastrin Signaling WP4659, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'PDGFRB', 'KDR', 'VEGFA'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'PDGFRB', 'KDR', 'VEGFA'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'PDGFRB', 'KDR', 'VEGFA'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'PDGFRB', 'KDR', 'VEGFA'}, number: 4
Term: Genes Controlling Nephrogenesis WP4823, 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/1090, Title of overlapping gene(s): {'CUL1'}, number: 1
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/1270, 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'}, number: 1
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/1457, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): set(), number: 0
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
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'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/344, 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): set(), number: 0
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1'}, number: 1
Term: Glucocorticoid Receptor Pathway WP2880, KEID: https://identifiers.org/aop.events/484, 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: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 5
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 5
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 5
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6', 'UGT1A9', 'UGT1A4', 'UGT1A1'}, number: 4
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A7', 'UGT1A9', 'UGT1A6', 'UGT1A4', 'UGT1A1'}, number: 5
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Glucuronidation WP698, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLM', 'ANPEP', 'GCLC', 'GPX3', 'GPX2', 'IDH1', 'GSR'}, number: 7
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GCLM', 'ANPEP', 'GCLC', 'GPX3', 'GPX2', 'IDH1', 'GSR'}, number: 7
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Glutathione Metabolism WP100, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'DKK1', 'FZD1', 'WNT5A'}, number: 4
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST'}, number: 1
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'DKK1', 'FZD1', 'WNT5A'}, number: 4
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'FST'}, number: 1
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'FZD1'}, number: 2
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Hair Follicle Development Cytodifferentiation Stage 3 Of 3 WP2840, 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/1090, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'AJUBA', 'CCND1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1271, 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): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1487, 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): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND1', 'NFE2L2', 'CDKN1A', 'ERBB2', 'PIK3R1'}, number: 5
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/1917, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3R1', 'CCND1', 'CDKN1A', 'VEGFA', 'DDIT4'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'PIK3R1', 'ERBB2', 'CCND1'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND1', 'NFE2L2', 'CDKN1A', 'NOTCH1', 'DDIT4'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND1', 'NFE2L2', 'CDKN1A', 'ERBB2', 'PIK3R1'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'PIK3R1'}, number: 2
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'NFE2L2', 'PIK3R1'}, number: 3
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'CDKN1A', 'PIK3R1', 'DDIT4'}, number: 4
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3R1', 'CCND1', 'CDKN1A', 'VEGFA', 'DDIT4'}, number: 5
Term: Head And Neck Squamous Cell Carcinoma WP4674, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SOS1', 'CCND1', 'CDKN1A', 'PODXL', 'VEGFA', 'HIF1A'}, number: 6
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1538, 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): {'CDKN1A', 'SMAD3', 'SOS1', 'CCND1'}, number: 4
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/1944, 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): {'VEGFA', 'CDKN1A', 'SOS1', 'CCND1'}, number: 4
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'SMAD3', 'SOS1', 'CCND1'}, number: 4
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'CCND1'}, number: 2
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'SMAD3', 'SOS1', 'CCND1'}, number: 4
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SOS1'}, number: 3
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
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): {'SMAD3', 'SOS1', 'CDKN1A', 'VEGFA', 'HIF1A'}, number: 5
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SOS1', 'CCND1', 'CDKN1A', 'VEGFA', 'HIF1A'}, number: 5
Term: Hepatitis C And Hepatocellular Carcinoma WP3646, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'PAK2', 'WWTR1', 'CCND1', 'CDH6', 'CCN2', 'ITGA6', 'PDGFRB', 'ITGB4', 'CDH16', 'AJUBA', 'CDH17', 'CDH18', 'KDR'}, number: 16
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/1270, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1271, 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/1457, Title of overlapping gene(s): {'CDH6', 'CDH16'}, number: 2
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
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/1814, Title of overlapping gene(s): {'CCND1'}, number: 1
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'PAK2', 'CCND1', 'PDGFRB', 'ITGB4', 'ITGA11', 'ITGA6', 'KDR'}, number: 10
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DDB1', 'CCND1'}, number: 2
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CCND1'}, number: 1
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/265, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'WWTR1', 'PDGFRB', 'ITGB4', 'ITGA11', 'ITGA6', 'KDR'}, number: 8
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'CCND1', 'PDGFRB', 'ITGB4', 'ITGA11', 'ITGA6', 'KDR'}, number: 9
Term: Hippo Merlin Signaling Dysregulation WP4541, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'SHC1'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'RUNX2', 'SERPINE1'}, number: 5
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'SHC1'}, number: 2
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'SHC1'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'SHC1'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'SHC1'}, number: 2
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'SHC1', 'RUNX2', 'SERPINE1'}, number: 6
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/344, 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): set(), number: 0
Term: Hypothesized Pathways In Pathogenesis Of Cardiovascular Disease WP3668, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SERPINE1'}, number: 2
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/890, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Hypothetical Craniofacial Development Pathway WP3655, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'PAK2', 'SHC1', 'SOS1', 'ITGB4', 'ITGA6'}, number: 8
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'SORBS1'}, number: 1
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SOS1', 'SHC1'}, number: 2
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'PAK2', 'SHC1', 'SOS1', 'ITGB4', 'ITGA11', 'ITGA6'}, number: 9
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SOS1', 'SHC1'}, number: 2
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SORBS1', 'ROCK2'}, number: 2
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SOS1', 'SHC1'}, number: 2
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CSK', 'SOS1', 'ROCK2', 'SHC1'}, number: 4
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'SOS1', 'ITGB4', 'ITGA11', 'ITGA6'}, number: 6
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGA1', 'ITGB3', 'SOS1', 'ITGB4', 'ITGA11', 'ITGA6'}, number: 7
Term: Integrin Mediated Cell Adhesion WP185, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGF7'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'FGF7'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGF7', 'BMP2'}, number: 2
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGF7'}, number: 1
Term: Interactions Between LOXL4 And Oxidative Stress Pathway WP3670, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'PPARA'}, number: 1
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PPARA'}, number: 1
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'SCARB1'}, number: 1
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SCARB1'}, number: 1
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARA'}, number: 1
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Intestinal Microbiome On Anticoag Response Of Vit K Antagonists WP5273, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'CES2', 'ABCC2', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CES2', 'ABCC2', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC2'}, number: 1
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CES2', 'ABCC2', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A1'}, number: 3
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CES2', 'ABCC2', 'UGT1A9', 'UGT1A1'}, number: 4
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Irinotecan Pathway WP229, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ATG16L1'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1'}, number: 1
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: LDLRAD4 And What We Know About It WP4904, 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/1090, Title of overlapping gene(s): {'FOSL1', 'AREG', 'CCND1'}, number: 3
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/1270, 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/1271, 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/1457, 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/1487, 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/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/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/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/1944, 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): {'CCND1'}, number: 1
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/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/214, 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/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/265, 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/288, 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/344, Title of overlapping gene(s): {'TIMP1'}, 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): set(), number: 0
Term: Mammary Gland Development Pathway Puberty Stage 2 Of 4 WP2814, KEID: https://identifiers.org/aop.events/484, 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/890, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'ERBB2', 'CCND1'}, number: 2
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRLR', 'CCND1'}, number: 2
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'ERBB2', 'CCND1'}, number: 2
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ERBB2', 'CCND1'}, number: 2
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'PRLR'}, number: 2
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRLR', 'CCND1'}, number: 2
Term: Mammary Gland Development Pregnancy And Lactation Stage 3 Of 4 WP2817, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'FGF7', 'PDGFRB', 'WNT5A', 'KDR'}, number: 4
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'FGF7', 'PDGFRB', 'KDR'}, number: 3
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'WNT5A'}, number: 2
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT5A'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HNF4A'}, number: 1
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGF7', 'RARA', 'PDGFRB', 'KDR'}, number: 4
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGF7', 'PDGFRB', 'KDR'}, number: 3
Term: Markers Of Kidney Cell Lineage WP5236, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'MMP14', 'MMP2'}, number: 2
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP16', 'MMP7', 'MMP14', 'MMP2', 'MMP28', 'TIMP1', 'TIMP2'}, number: 7
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Matrix Metalloproteinases WP129, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'ACTB', 'PAK2', 'ACTG1', 'WWTR1', 'ITGB4', 'MAP4K2'}, number: 7
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGB3', 'ITGB4', 'PAK2'}, number: 3
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'ITGB4', 'WWTR1'}, number: 3
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'ITGB4'}, number: 2
Term: Mechanoreg And Pathology Of YAP TAZ Hippo And Non Hippo Mechs WP4534, KEID: https://identifiers.org/aop.events/890, 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/1270, Title of overlapping gene(s): {'PCK1'}, 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/1457, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1487, 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/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/1917, Title of overlapping gene(s): {'SLC2A4', 'SLC2A1'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/1944, 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): {'PCK1'}, number: 1
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/209, Title of overlapping gene(s): {'XDH', 'SLC2A4', 'PCK1', 'SLC2A1'}, number: 4
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'SLC2A1'}, number: 2
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/288, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/344, 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): {'SLC2A4', 'SLC2A1'}, number: 2
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A4', 'PCK1', 'SLC2A1'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'PCK1', 'SLC2A1'}, number: 3
Term: Metabolic Epileptic Disorders WP5355, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'XDH'}, number: 1
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL', 'ABCA1'}, number: 2
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Metabolic Pathway Of LDL HDL And TG Including Diseases WP4522, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Metabolism Of Sphingolipids In ER And Golgi Apparatus WP4142, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1', 'GPX3', 'GSR'}, number: 4
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP27A1'}, number: 3
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1', 'GPX3', 'GSR'}, number: 4
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GPX2', 'GPX3', 'GSR'}, number: 3
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1', 'GPX3', 'GSR'}, number: 4
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'GSR', 'UGT1A7', 'UGT1A9', 'GPX3', 'UGT1A6', 'GPX2', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'GSR', 'UGT1A7', 'CYP1A1', 'UGT1A9', 'GPX3', 'UGT1A6', 'GPX2', 'UGT1A4', 'CYP27A1', 'UGT1A1'}, number: 12
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'BAAT'}, number: 3
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GSR', 'UGT1A7', 'UGT1A9', 'GPX3', 'UGT1A6', 'GPX2', 'UGT1A4', 'UGT1A1'}, number: 8
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1', 'GPX3', 'GSR'}, number: 4
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1', 'GPX3', 'GSR'}, number: 4
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP8B1', 'CYP7A1', 'CYP2C19', 'UGT1A9', 'UGT1A6', 'BAAT', 'UGT1A4', 'UGT1A1'}, number: 9
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'GSR', 'UGT1A7', 'UGT1A9', 'GPX3', 'UGT1A6', 'GPX2', 'BAAT', 'UGT1A4', 'UGT1A1'}, number: 11
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1', 'CYP27A1'}, number: 3
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6', 'CYP1A1', 'GPX3', 'GSR'}, number: 4
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LRP5', 'FZD1', 'WNT5A'}, number: 3
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1538, 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): {'PIK3R1', 'WNT5A'}, number: 2
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/1917, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D'}, number: 1
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3R1', 'IKBKG'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'WNT5A'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'LRP5', 'FZD1', 'ROCK2', 'WNT5A'}, number: 5
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1', 'WNT5A'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PIK3R1', 'ROCK2', 'IKBKG'}, number: 3
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3R1', 'FZD1', 'IL6ST', 'IKBKG'}, number: 4
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3R1', 'IKBKG'}, number: 2
Term: MicroRNAs In Cardiomyocyte Hypertrophy WP1544, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ATF3', 'ACTB', 'ACTG1'}, number: 3
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'MAFF', 'PRKCA'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D', 'YWHAG'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'ETS2'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'MAFF', 'PRKCA', 'CAMK2D'}, number: 3
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MAFF', 'PRKCA'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'ADCY8', 'ADCY9', 'ARRB1'}, number: 3
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'MAFF', 'PRKCA'}, number: 2
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Myometrial Relaxation And Contraction Pathways WP289, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'ITGA1'}, number: 2
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'ITGA1'}, number: 2
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1'}, number: 1
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'ITGA1'}, number: 2
Term: NOTCH1 Regulation Of Endothelial Cell Calcification WP3413, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'TGFA', 'FGF13', 'SLC2A1'}, number: 3
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
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/1917, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'GPX2', 'UGT1A4', 'SLC2A4', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'PGD', 'SLC6A6', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 34
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TGFA', 'FGF13'}, number: 2
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/209, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'GPX2', 'UGT1A4', 'SLC2A4', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'PGD', 'SLC6A6', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 34
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC2', 'ABCC3'}, number: 2
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'GPX2', 'UGT1A4', 'SLC2A4', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'PGD', 'SLC6A6', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 34
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A9', 'ABCC2', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 6
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A6', 'MAFF', 'SLC2A6', 'GPX2', 'UGT1A4', 'SLC2A4', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'PGD', 'SLC6A6', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 34
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A4', 'FGF13', 'SLC2A1'}, number: 3
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA', 'SLC2A4', 'FGF13', 'SLC2A1'}, number: 4
Term: NRF2 Pathway WP2884, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'MMP2', 'KDR', 'VEGFA'}, number: 4
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3'}, number: 3
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'CDKN1B'}, number: 2
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'COL1A1', 'CDKN1B', 'KDR'}, number: 4
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'CDKN1B'}, number: 2
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TGFB2', 'CDKN1B'}, number: 3
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3'}, number: 3
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP2'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'CDKN1B', 'VEGFA', 'COL1A1', 'KDR'}, number: 5
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'COL1A1', 'CDKN1B', 'KDR'}, number: 4
Term: NRP1 Triggered Signaling In Pancreatic Cancer WP5144, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HIF1A', 'KDR'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SMAD9'}, number: 3
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'KDR'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'TGFB2'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'TGFB2'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SMAD9'}, number: 3
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'HIF1A', 'KDR'}, number: 3
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'HIF1A', 'KDR'}, number: 2
Term: Neovascularization Processes WP4331, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'SLC2A1'}, number: 2
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'SMAD3'}, number: 2
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'SLC2A1'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D', 'GRIN2B'}, number: 2
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2', 'GRIN2B', 'PRKCA'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'SMAD3'}, number: 2
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'PRKCA', 'TGFB2', 'SLC2A1'}, number: 4
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'BCL2', 'PRKCA', 'TGFB2', 'SLC2A1'}, number: 5
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'ADCY8', 'TGFBR1', 'SMAD3', 'TGFBR3'}, number: 4
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'TGFB2', 'SLC2A1'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'IL6ST', 'SLC2A1'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'PRKCA', 'SLC2A1'}, number: 3
Term: Neuroinflammation And Glutamatergic Signaling WP5083, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A4', 'CYP2B6', 'UGT1A9'}, number: 3
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A4', 'UGT1A9'}, number: 2
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6'}, number: 1
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nicotine Metabolism In Liver Cells WP1600, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'PPARA'}, number: 3
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'PPARA', 'ABCC2', 'ABCC3'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC2', 'ABCC3', 'CYP8B1', 'CYP7A1'}, number: 4
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP8B1', 'CYP7A1', 'ABCC2', 'ABCC3'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ABCC2', 'ABCC3', 'CYP8B1', 'CYP7A1'}, number: 4
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1', 'PPARA', 'ABCA1', 'RARA'}, number: 5
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors In Lipid Metabolism And Toxicity WP299, 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/1090, Title of overlapping gene(s): {'CUL1', 'TGFA', 'SLC7A5', 'FGF13', 'CCND1', 'SLC2A1', 'PPARGC1A'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'ACOX1', 'PPARA', 'PLTP', 'PCK1'}, number: 6
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR3'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2', 'CCND1', 'CDKN1B', 'SMC1A'}, number: 4
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A4', 'MAFF', 'UGT1A6', 'SLC2A6', 'GPX2', 'SLC2A4', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'SLC6A6', 'PGD', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 34
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'TGFA', 'FGF13', 'PCK1', 'CCND1', 'CDKN1B'}, number: 5
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A', 'CDKN1B', 'CCND1'}, number: 3
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'ACOX1', 'SRXN1', 'PTGR1', 'CYP1A1', 'FTL', 'PLTP', 'NFE2L2', 'GPX3', 'UGT1A4', 'MAFF', 'UGT1A6', 'SLC2A6', 'GPX2', 'SLC2A4', 'CYP8B1', 'CYP7A1', 'PCK1', 'PPARA', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'SLC6A6', 'PGD', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'CCND1', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 42
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'SLCO2B1', 'CYP8B1', 'IP6K3', 'CYP7A1', 'ABCC2', 'BAAT', 'ABCC3', 'IRS2', 'PPARGC1A'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A4', 'MAFF', 'SMC1A', 'UGT1A6', 'SLC2A6', 'GPX2', 'SLC2A4', 'ABCC3', 'MAFG', 'UGT1A1', 'GCLM', 'TGFA', 'UGT1A7', 'SLC6A6', 'PGD', 'EPHA3', 'UGT1A9', 'TGFB2', 'CDKN1B', 'SLC2A1', 'CES2', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'CCND1', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 37
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 7
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TXNRD1', 'TGFBR3', 'CYP1A1', 'NFE2L2', 'GCLC', 'GPX3', 'UGT1A6', 'GSR'}, number: 8
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'SLCO2B1', 'CYP2B6', 'IP6K3', 'CYP8B1', 'CYP7A1', 'UGT1A1', 'CYP2C19', 'UGT1A9', 'ABCC2', 'BAAT', 'UGT1A6', 'ABCC3', 'UGT1A4', 'IRS2', 'PPARGC1A'}, number: 15
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/344, 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): {'IP6K3', 'TXNRD1', 'SRXN1', 'PTGR1', 'FTL', 'NFE2L2', 'GPX3', 'UGT1A4', 'MAFF', 'UGT1A6', 'SLC2A6', 'GPX2', 'IRS2', 'SLC2A4', 'CYP8B1', 'CYP7A1', 'ABCC3', 'MAFG', 'UGT1A1', 'PPARGC1A', 'SLCO2B1', 'GCLM', 'TGFA', 'UGT1A7', 'SLC6A6', 'PGD', 'EPHA3', 'UGT1A9', 'TGFB2', 'SLC2A1', 'CES2', 'BAAT', 'GSR', 'SLC6A8', 'CES4A', 'TXN', 'ALDH3A1', 'FGF13', 'ABCC2', 'GCLC', 'SLC7A11'}, number: 41
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'SLC2A4', 'CYP7A1', 'NR3C1', 'PCK1', 'PPARA', 'FGF13', 'CDKN1B', 'SLC2A1', 'IRS2', 'PPARGC1A'}, number: 11
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'TGFA', 'PCK1', 'CCND1', 'FGF13', 'CDKN1B', 'SLC2A1', 'IRS2', 'PPARGC1A'}, number: 9
Term: Nuclear Receptors Meta Pathway WP2882, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 7
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ROR1'}, number: 1
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'PPARA'}, number: 1
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ROR1', 'PPARA'}, number: 2
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'HNF4A'}, number: 1
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'RARA', 'PPARA'}, number: 3
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Nuclear Receptors WP170, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'HIF1A', 'SLC2A1'}, number: 2
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2', 'PIK3R1'}, number: 2
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1', 'PRKCA', 'SLC2A4', 'NFE2L2'}, number: 4
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'PLD1', 'SGK1'}, number: 4
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1', 'PRKCA', 'SLC2A4', 'NFE2L2'}, number: 4
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'PRKCA', 'NFE2L2', 'SLC2A1', 'PIK3R1'}, number: 5
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'PIK3R1', 'ARRB1', 'RUNX2'}, number: 4
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A4', 'PRKCA', 'NFE2L2', 'SLC2A1', 'PIK3R1'}, number: 5
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3R1', 'SLC2A4', 'HIF1A', 'SLC2A1'}, number: 4
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'SGK1', 'PRKCA', 'SLC2A1', 'PIK3R1', 'HIF1A'}, number: 6
Term: Orexin Receptor Pathway WP5094, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'VEGFA', 'FOSL1', 'HIF1A', 'KDR'}, number: 5
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1538, 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'}, number: 1
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/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'PRKCA', 'COL1A1', 'KDR'}, number: 4
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'FOSL1'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'FOSL1', 'PRKCA'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FOSL1', 'PRKCA'}, number: 2
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPAS1', 'COL3A1', 'VEGFA', 'COL1A1', 'HIF1A', 'KDR'}, number: 6
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'EPAS1', 'COL3A1', 'PRKCA', 'VEGFA', 'COL1A1', 'HIF1A', 'KDR'}, number: 7
Term: Osteoarthritic Chondrocyte Hypertrophy WP5373, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'WNT7B', 'FGF7', 'LRP5', 'FZD1', 'FZD7', 'WNT5A'}, number: 6
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'RUNX2', 'SMAD9'}, number: 2
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'RUNX2'}, number: 1
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R1', 'PIK3C2B', 'WNT5A', 'WNT7B'}, number: 4
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'FGF7', 'PRKCA', 'PIK3R1'}, number: 3
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'PIK3C2B', 'WNT5A', 'WNT7B'}, number: 4
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'WNT7B', 'LRP5', 'FZD1', 'FZD7', 'PRKCA', 'NOTCH1', 'WNT5A'}, number: 7
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT7B', 'PRKCA', 'PIK3R1', 'WNT5A', 'PIK3C2B'}, number: 5
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'PIK3R1', 'RUNX2', 'SMAD9'}, number: 3
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGF7', 'FZD1', 'BMP2', 'PIK3R1', 'PIK3C2B'}, number: 5
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGF7', 'PRKCA', 'PIK3R1', 'PIK3C2B'}, number: 4
Term: Osteoblast Differentiation And Related Diseases WP4787, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGB3', 'PDGFRB'}, number: 2
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGB3', 'COL1A1', 'PDGFRB'}, number: 3
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'COL1A1', 'PDGFRB'}, number: 3
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'COL1A1', 'PDGFRB'}, number: 3
Term: Osteoblast Signaling WP322, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3', 'CDKN1B'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1B', 'PRLR'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'CDKN1B'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'CDKN1B'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'CDKN1B', 'PRLR'}, number: 3
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1B', 'PRLR'}, number: 2
Term: Ovarian Infertility WP34, KEID: https://identifiers.org/aop.events/890, 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): {'CDKN1A', 'ACTB', 'WNT7B'}, number: 3
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/1270, 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): {'SMAD3', 'RUNX2'}, 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/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'SMAD3', 'CDKN1A', 'WNT7B'}, number: 3
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/1917, Title of overlapping gene(s): {'TGFB2'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'CDKN1A', 'WNT7B'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'CDKN1A', 'TGFB2', 'WNT7B'}, number: 4
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'CDKN1A', 'TGFB2', 'WNT7B'}, number: 4
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): {'SMAD3', 'RUNX2'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/344, 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): {'CDKN1A', 'TGFB2'}, number: 2
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'BMP2', 'SMAD3', 'CDKN1A'}, number: 3
Term: Overlap Between Signal Transduction Pathways LMNA Laminopathies WP4879, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CDKN1A'}, number: 1
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: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'AREG'}, number: 2
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CX3CL1'}, number: 1
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CCL28', 'CX3CL1', 'CCL15', 'CXCL13'}, number: 4
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Overview Of Proinflammatory And Profibrotic Mediators WP5095, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP27A1'}, number: 3
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'CYP1A1', 'CYP27A1'}, number: 4
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP8B1', 'CYP7A1', 'CYP2C19'}, number: 4
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1', 'CYP27A1'}, number: 3
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'MAP3K1'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1538, 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): {'BCL2', 'CDKN1A', 'CDKN1B', 'MAP3K1'}, number: 4
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
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/1944, 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): {'BCL2', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'CDKN1B', 'MAP3K1'}, number: 4
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'CDKN1B', 'MAP3K1'}, number: 4
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
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): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Oxidative Damage Response WP3941, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'CDKN1B'}, number: 3
Term: Oxidative Damage Response WP3941, 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/1090, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 6
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TXNRD1', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, 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): set(), number: 0
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'TXNRD1', 'CYP1A1', 'XDH', 'NFE2L2', 'GPX3', 'GCLC', 'UGT1A6', 'GSR'}, number: 8
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'ITGA6', 'LAMA1', 'ITGA1', 'SOS1', 'COL4A6', 'TGFA', 'FGF7', 'BCL2', 'NTF4', 'CDKN1A', 'EFNA5', 'PDGFRB', 'VEGFA', 'KDR', 'ITGB3', 'LAMB1', 'FGF13', 'CCND1', 'ITGB4'}, number: 20
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1'}, 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): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 7
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2', 'BCL2L11'}, number: 2
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'PRKCA', 'FGF13'}, number: 3
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/1944, 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): {'ITGA3', 'GNG10', 'PRKCA', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'ITGA1', 'SOS1', 'SGK1', 'PCK1', 'PRLR', 'COL4A6', 'TGFA', 'FGF7', 'BCL2', 'NTF4', 'CDKN1A', 'EFNA5', 'CDKN1B', 'PDGFRB', 'PKN1', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'OSMR', 'LAMB1', 'FGF13', 'CCND1', 'SGK2', 'THBS1', 'ITGB4', 'TNXB', 'BCL2L11'}, number: 38
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 7
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'PCK1', 'FGF13', 'CCND1', 'PRKCA', 'CDKN1A', 'THBS1', 'DDIT4'}, number: 8
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFA', 'BCL2', 'SOS1', 'FGF13', 'CCND1', 'PRKCA', 'CDKN1A', 'CDKN1B', 'PIK3R1', 'BCL2L11'}, number: 10
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GNG10', 'SOS1', 'THBS1', 'PIK3R1', 'IKBKG'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA', 'FGF13', 'PRKCA', 'CDKN1A', 'PIK3R1'}, number: 5
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'SOS1', 'PCK1', 'PRLR', 'COL4A6', 'FGF7', 'CDKN1A', 'EFNA5', 'CDKN1B', 'PDGFRB', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'OSMR', 'LAMB1', 'FGF13', 'THBS1', 'ITGB4', 'TNXB'}, number: 28
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'GNG10', 'PRKCA', 'ITGA11', 'ITGA6', 'COL1A1', 'DDIT4', 'GHR', 'LAMA1', 'IKBKG', 'ITGA1', 'SOS1', 'SGK1', 'PCK1', 'PRLR', 'COL4A6', 'TGFA', 'FGF7', 'BCL2', 'NTF4', 'CDKN1A', 'EFNA5', 'CDKN1B', 'PDGFRB', 'PKN1', 'VEGFA', 'PIK3R1', 'KDR', 'ITGB3', 'OSMR', 'LAMB1', 'FGF13', 'CCND1', 'SGK2', 'THBS1', 'ITGB4', 'TNXB', 'BCL2L11'}, number: 38
Term: PI3K Akt Signaling WP4172, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'PPARA', 'CYP7A1', 'PLTP'}, number: 4
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A9'}, number: 1
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'PPARA', 'PLTP', 'CCND1', 'UGT1A9'}, number: 6
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A9', 'CCND1'}, number: 2
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'UGT1A9'}, number: 3
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1', 'UGT1A9'}, number: 3
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'PPARA'}, number: 2
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: PPAR Alpha Pathway WP2878, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP8B1', 'SORBS1', 'LPL', 'CYP7A1', 'ACOX1', 'PPARA', 'PCK1', 'PLTP', 'ACSL5', 'CYP27A1'}, number: 10
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP8B1', 'SORBS1', 'LPL', 'CYP7A1', 'ACOX1', 'PPARA', 'PCK1', 'PLTP', 'ACSL5', 'CYP27A1'}, number: 10
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CYP8B1', 'CYP7A1'}, number: 2
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PCK1', 'PPARA', 'CYP27A1'}, number: 5
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PCK1'}, number: 1
Term: PPAR Signaling WP3942, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'AREG', 'CDH17', 'SLC2A1'}, number: 3
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Pancreatic Cancer Subtypes WP5390, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ACTB', 'ACTG1'}, number: 2
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA', 'ROCK2'}, number: 2
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'ROCK2'}, number: 1
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Pathogenic Escherichia Coli Infection WP2272, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'ADCY8', 'ADCY9'}, number: 2
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Phosphodiesterases In Neuronal Function WP4222, 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/1090, Title of overlapping gene(s): {'FGF7', 'BCL2', 'MMP2', 'CCND1', 'CDKN1A'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'CCND1', 'NFE2L2', 'CDKN1A', 'BCL2L11'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2', 'NFE2L2', 'BCL2L11'}, number: 3
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'FGF7', 'BCL2', 'CCND1', 'CDKN1A', 'BCL2L11'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'CDKN1A', 'BCL2L11', 'CCND1'}, number: 4
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFE2L2', 'CDKN1A', 'CCND1'}, number: 3
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'CCND1', 'NFE2L2', 'CDKN1A', 'BCL2L11'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP2'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NFE2L2', 'CDKN1A'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGF7', 'CDKN1A'}, number: 2
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'FGF7', 'BCL2', 'CCND1', 'CDKN1A', 'BCL2L11'}, number: 5
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'TGFA', 'HIF1A', 'SLC2A1'}, number: 4
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/1270, 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/1457, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'SLC2A1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'TGFA'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/2006, 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): {'TGFA', 'SERPINE1', 'SLC2A1'}, number: 3
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFA', 'SLC2A1'}, number: 2
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/288, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/344, 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): {'TGFA', 'SLC2A1'}, number: 2
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'SERPINE1', 'HIF1A', 'SLC2A1'}, number: 4
Term: Photodynamic Therapy Induced HIF 1 Survival Signaling WP3614, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'TGFA', 'HIF1A', 'SLC2A1'}, number: 4
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/1090, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
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/1487, Title of overlapping gene(s): {'GCLM', 'GCLC'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
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/1917, Title of overlapping gene(s): {'GCLM', 'SRXN1', 'NFE2L2', 'ABCC2', 'GCLC', 'ABCC3'}, number: 6
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/1944, 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): set(), number: 0
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GCLM', 'SRXN1', 'NFE2L2', 'ABCC2', 'GCLC', 'ABCC3'}, number: 6
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'SRXN1', 'NFE2L2', 'ABCC2', 'GCLC', 'ABCC3'}, number: 6
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'ABCC3', 'ABCC2'}, number: 2
Term: Photodynamic Therapy Induced NFE2L2 NRF2 Survival Signaling WP3612, KEID: https://identifiers.org/aop.events/344, 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): {'GCLM', 'SRXN1', 'NFE2L2', 'ABCC2', 'GCLC', 'ABCC3'}, number: 6
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/890, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SHC1', 'TGFA', 'SOS1', 'FZD1', 'FZD7', 'CDKN1A'}, number: 6
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CDKN1A', 'ERBB2', 'CDKN1B'}, number: 5
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA'}, number: 1
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'SHC1', 'TGFA', 'SOS1', 'CDKN1A', 'CDKN1B'}, number: 5
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SHC1', 'SOS1', 'CDKN1A', 'ERBB2', 'CDKN1B'}, number: 5
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'FZD1', 'ROCK2', 'FZD7', 'CDKN1A'}, number: 5
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'TGFA', 'SOS1', 'CDKN1A', 'ERBB2', 'CDKN1B'}, number: 6
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SOS1', 'ROCK2', 'SHC1'}, number: 3
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA', 'CDKN1A'}, number: 2
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SOS1', 'CDKN1A', 'FZD1', 'CDKN1B'}, number: 4
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA', 'CDKN1A', 'SOS1', 'CDKN1B'}, number: 4
Term: Physico Chemical Features And Toxicity Associated Pathways WP3680, 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/1090, Title of overlapping gene(s): {'ITGA3', 'RASSF6', 'SHC1', 'MKNK2', 'LRP5', 'CXXC4', 'SLC7A5', 'PODXL', 'CDH17', 'ITGA6', 'LAMA1', 'MAP3K1', 'ITGA1', 'DKK1', 'ACTB', 'ACTG1', 'SOS1', 'SLC3A2', 'COL4A6', 'AREG', 'PORCN', 'PPARGC1A', 'BARD1', 'PAK2', 'FGF7', 'TGFA', 'BCL2', 'FZD1', 'MMP2', 'NTF4', 'CDH6', 'CDKN1A', 'PDGFRB', 'MAP4K2', 'CDH16', 'SLC2A1', 'EFNA5', 'VEGFA', 'CDH18', 'FOSL1', 'RASSF5', 'WNT5A', 'KDR', 'ITGB3', 'CUL1', 'WNT7B', 'WWC1', 'LAMB1', 'MMP14', 'FGF13', 'FZD7', 'CCND1', 'CCN2', 'WWTR1', 'DEPTOR', 'CIT', 'AJUBA', 'ITGB4', 'ROR1', 'SFRP2', 'HIF1A', 'ATF3'}, number: 62
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/1270, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1271, 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/1457, Title of overlapping gene(s): {'CDH6', 'CDH16'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'SHC1', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'FOSL1', 'WNT5A', 'MAP3K1'}, number: 9
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'TGFA', 'FGF13', 'SLC2A1'}, number: 3
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA3', 'SHC1', 'ITGA6', 'LAMA1', 'ITGA1', 'SOS1', 'COL4A6', 'PAK2', 'FGF7', 'TGFA', 'BCL2', 'NTF4', 'CDKN1A', 'PDGFRB', 'EFNA5', 'VEGFA', 'KDR', 'ITGB3', 'LAMB1', 'FGF13', 'CCND1', 'DEPTOR', 'ITGB4', 'RASSF5'}, number: 24
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SHC1', 'WNT7B', 'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'FOSL1', 'WNT5A', 'MAP3K1'}, number: 9
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1', 'WNT7B', 'TGFA', 'LRP5', 'CXXC4', 'FZD1', 'FGF13', 'FZD7', 'CCND1', 'DEPTOR', 'CDKN1A', 'ROR1', 'PORCN', 'SLC2A1', 'FOSL1', 'SFRP2', 'WNT5A'}, number: 17
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'WNT7B', 'TGFA', 'BCL2', 'SOS1', 'FGF13', 'CCND1', 'CDKN1A', 'SLC2A1', 'FOSL1', 'WNT5A', 'MAP3K1'}, number: 12
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/265, Title of overlapping gene(s): {'SOS1', 'SHC1'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP14', 'MMP2'}, number: 2
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'TGFA', 'FGF13', 'CDKN1A', 'SLC2A1', 'PPARGC1A'}, number: 5
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGA6', 'LAMA1', 'SOS1', 'COL4A6', 'PPARGC1A', 'FGF7', 'FZD1', 'CDKN1A', 'PDGFRB', 'EFNA5', 'SLC2A1', 'VEGFA', 'KDR', 'ITGB3', 'LAMB1', 'FGF13', 'WWTR1', 'ITGB4', 'HIF1A'}, number: 20
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGA6', 'LAMA1', 'ITGA1', 'SOS1', 'COL4A6', 'PPARGC1A', 'FGF7', 'TGFA', 'BCL2', 'NTF4', 'CDKN1A', 'PDGFRB', 'EFNA5', 'SLC2A1', 'VEGFA', 'KDR', 'ITGB3', 'LAMB1', 'FGF13', 'CCND1', 'ITGB4', 'HIF1A'}, number: 23
Term: Pleural Mesothelioma WP5087, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DKK1', 'WNT7B', 'NTF4', 'VEGFA', 'WNT5A'}, number: 5
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'FST'}, number: 1
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'WNT5A', 'WNT7B'}, number: 2
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'NTF4'}, number: 2
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'WNT5A', 'WNT7B'}, number: 2
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'DKK1', 'WNT5A', 'WNT7B'}, number: 4
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT5A', 'WNT7B'}, number: 2
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'FST'}, number: 1
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'NTF4'}, number: 2
Term: Pluripotent Stem Cell Differentiation Pathway WP2848, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC3', 'ABCC2', 'PPARGC1A'}, number: 3
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'UGT1A1'}, number: 6
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'UGT1A1', 'CYP2C19', 'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'PPARGC1A'}, number: 9
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A1', 'ABCC2', 'UGT1A9', 'UGT1A6', 'ABCC3', 'UGT1A4', 'PPARGC1A'}, number: 7
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'PPARGC1A'}, number: 2
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Pregnane X Receptor Pathway WP2876, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'UGT1A6'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'DKK1', 'ITGB3', 'LRP5', 'CDKN1A', 'PODXL', 'ITGB4'}, number: 7
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/1270, 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): 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): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, 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/1917, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/1944, 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): {'ITGA3', 'ITGB3', 'CDKN1A', 'ITGB4', 'CDKN1B'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NOTCH1', 'DKK1', 'LRP5', 'CDKN1A'}, number: 4
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B'}, number: 2
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): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'CDKN1A', 'ITGB4', 'CDKN1B'}, number: 5
Term: Primary Focal Segmental Glomerulosclerosis FSGS WP2572, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'ITGB3', 'CDKN1A', 'ITGB4', 'CDKN1B'}, number: 5
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/1090, Title of overlapping gene(s): {'SOS1', 'SHC1'}, number: 2
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/1270, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1271, 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/1457, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1', 'ERBB2'}, number: 4
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/1917, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'YWHAG'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1', 'PRLR'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1', 'ERBB2'}, number: 4
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/214, Title of overlapping gene(s): {'IRS2'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1', 'ERBB2'}, number: 4
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/265, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'IRS2'}, number: 1
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'IRS2'}, number: 2
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'IRS2', 'PRLR'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'IRS2', 'PRLR'}, number: 4
Term: Prolactin Signaling WP2037, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Prostaglandin Synthesis And Regulation WP98, 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/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/1270, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1271, 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/1457, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1815, 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/1944, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/1945, 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/209, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/214, 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/265, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Proteoglycan Biosynthesis WP4784, KEID: https://identifiers.org/aop.events/344, 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/484, 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: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'ABCC2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ABCC2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'ABCC2'}, number: 1
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'ABCC2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'ABCC2'}, number: 1
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'ABCC2', 'SLC2A1'}, number: 2
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A1'}, number: 1
Term: Proximal Tubule Transport WP4917, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'KDR'}, number: 2
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA', 'KDR'}, number: 2
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'VEGFA', 'KDR'}, number: 2
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'KDR'}, number: 2
Term: ROBO4 And VEGF Signaling Crosstalk WP3943, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'PAK2', 'SHC1', 'SOS1', 'PDGFRB', 'RASSF5', 'KDR'}, number: 6
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PLD2', 'GNG10', 'MRAS', 'PLA2G12B', 'ETS2', 'SHC1', 'PAK2', 'PLA1A', 'SOS1', 'PLD1', 'GRIN2B', 'PRKCA', 'PDGFRB', 'RASSF5', 'ABL2', 'PIK3R1', 'KDR', 'IKBKG'}, number: 18
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'SHC1'}, number: 3
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PRKCA', 'SOS1', 'SHC1', 'PIK3R1'}, number: 4
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GNG10', 'SHC1', 'SOS1', 'PIK3R1', 'IKBKG'}, number: 5
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1'}, number: 2
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'GNG10', 'SOS1', 'PDGFRB', 'PIK3R1', 'KDR', 'IKBKG'}, number: 6
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'GNG10', 'SOS1', 'PRKCA', 'PDGFRB', 'PIK3R1', 'KDR', 'IKBKG'}, number: 7
Term: Ras Signaling WP4223, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA1', 'ACTB', 'PAK2', 'ACTG1', 'FGF7', 'SOS1', 'FGF13', 'PDGFRB'}, number: 8
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'PIK3C2B'}, number: 3
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'FGF13'}, number: 1
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA1', 'MRAS', 'PAK2', 'FGF7', 'SOS1', 'FGF13', 'PDGFRB', 'PIK3R1'}, number: 8
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'PIK3C2B'}, number: 3
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'ROCK2', 'FGF13'}, number: 2
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'PIK3R1', 'SOS1', 'FGF13', 'PIK3C2B'}, number: 4
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CSK', 'PIK3R1', 'SOS1', 'ROCK2'}, number: 4
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'FGF13'}, number: 2
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FGF7', 'SOS1', 'FGF13', 'PDGFRB', 'PIK3R1', 'PIK3C2B'}, number: 6
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA1', 'FGF7', 'SOS1', 'FGF13', 'PDGFRB', 'PIK3R1', 'PIK3C2B'}, number: 7
Term: Regulation Of Actin Cytoskeleton WP51, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMC1A'}, number: 1
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Rett Syndrome WP4312, 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/1090, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1', 'GPX3'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1', 'GPX3'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GPX2', 'GPX3'}, number: 2
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1', 'GPX3'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
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/1917, Title of overlapping gene(s): {'GPX2', 'NFE2L2', 'TXNRD1', 'GPX3'}, number: 4
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/1944, 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): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'GPX2', 'NFE2L2', 'TXNRD1', 'GPX3'}, number: 4
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GPX2', 'NFE2L2', 'TXNRD1', 'GPX3'}, number: 4
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1', 'GPX3'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1', 'GPX3'}, number: 3
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/344, 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): {'GPX2', 'NFE2L2', 'TXNRD1', 'GPX3'}, number: 4
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): set(), number: 0
Term: Selenium Metabolism And Selenoproteins WP28, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2', 'TXNRD1', 'GPX3'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'XDH', 'TXNRD1', 'GPX3', 'GSR'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'XDH', 'TXNRD1', 'GPX3', 'GSR'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GPX2', 'GPX3', 'GSR'}, number: 3
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'XDH', 'TXNRD1', 'GPX3', 'GSR'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1815, 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): {'TXNRD1', 'TXN', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/1944, 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): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TXNRD1', 'TXN', 'XDH', 'SERPINE1', 'GPX3', 'GPX2', 'GSR'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR', 'TXNRD1', 'TXN', 'GPX3', 'GPX2', 'GSR'}, number: 6
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'XDH', 'TXNRD1', 'GPX3', 'GSR'}, number: 4
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TXNRD1', 'XDH', 'SERPINE1', 'GPX3', 'GSR'}, number: 5
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'TXNRD1', 'TXN', 'GPX3', 'SCARB1', 'GPX2', 'GSR'}, number: 7
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SERPINE1', 'ABCA1'}, number: 2
Term: Selenium Micronutrient Network WP15, KEID: https://identifiers.org/aop.events/484, 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): {'XDH', 'TXNRD1', 'GPX3', 'GSR'}, number: 4
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA3', 'BCL2', 'LAMB1', 'CCND1', 'CDKN1A', 'COL4A6', 'ITGA6', 'LAMA1'}, 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/1270, Title of overlapping gene(s): set(), number: 0
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): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'BCL2', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1'}, number: 5
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
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/1944, 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): {'ITGA3', 'BCL2', 'LAMB1', 'CCND1', 'CDKN1A', 'CDKN1B', 'COL4A6', 'ITGA6', 'PIK3R1', 'LAMA1', 'IKBKG'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1'}, number: 5
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'CCND1'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'CCND1', 'CDKN1A', 'CDKN1B', 'PIK3R1'}, number: 5
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/265, Title of overlapping gene(s): {'PIK3R1', 'IKBKG'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A'}, number: 2
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGA3', 'LAMB1', 'CDKN1A', 'CDKN1B', 'COL4A6', 'ITGA6', 'PIK3R1', 'LAMA1', 'IKBKG'}, number: 9
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGA3', 'BCL2', 'LAMB1', 'CCND1', 'CDKN1A', 'CDKN1B', 'COL4A6', 'ITGA6', 'PIK3R1', 'LAMA1', 'IKBKG'}, number: 11
Term: Small Cell Lung Cancer WP4658, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PLTP'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'PLTP'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'LDLR'}, number: 1
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'LDLR', 'SCARB1', 'CYP7A1'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP7A1', 'LPL', 'ABCA1'}, number: 3
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Statin Inhibition Of Cholesterol Production WP430, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ACTG1'}, number: 1
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Striated Muscle Contraction Pathway WP383, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'VEGFA', 'HIF1A', 'PPARGC1A'}, number: 3
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'YWHAG'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'VEGFA'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PPARGC1A'}, number: 1
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'NR3C1', 'HIF1A', 'VEGFA', 'PPARGC1A'}, number: 4
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'VEGFA', 'HIF1A', 'PPARGC1A'}, number: 3
Term: Sudden Infant Death Syndrome SIDS Susceptibility Pathways WP706, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CDH6', 'CDH16'}, number: 2
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2', 'ID1', 'CDH6', 'CDH16'}, number: 5
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta In Thyroid Cells For Epithelial Mesenchymal Transition WP3859, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'FST', 'RUNX2', 'SMAD9', 'THBS1', 'SERPINE1'}, number: 8
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1', 'SERPINE1'}, number: 2
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'FST', 'RUNX2', 'SMAD9', 'THBS1', 'SERPINE1'}, number: 8
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SERPINE1', 'THBS1'}, number: 3
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: TGF Beta Receptor Signaling In Skeletal Dysplasias WP4816, 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/1090, Title of overlapping gene(s): {'ITGB3', 'CUL1', 'PAK2', 'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'ITGB4', 'ATF3'}, number: 9
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'TGFBR3', 'RUNX2', 'THBS1'}, number: 5
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3', 'RUNX2'}, number: 2
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1538, 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): {'SMAD3', 'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'PIK3R1'}, number: 6
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/1917, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGB3', 'PAK2', 'SHC1', 'SOS1', 'CCND1', 'THBS1', 'CDKN1A', 'ITGB4', 'PIK3R1'}, number: 9
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3', 'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'PIK3R1'}, number: 6
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1', 'CDKN1A', 'CCND1'}, number: 3
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3', 'SHC1', 'SOS1', 'CCND1', 'CDKN1A', 'PIK3R1'}, number: 6
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SMAD3', 'TGFBR1', 'TGFBR3', 'SHC1', 'SOS1', 'RUNX2', 'THBS1', 'PIK3R1'}, number: 8
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PIK3R1', 'CDKN1A'}, number: 2
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'MEF2A', 'SMAD3', 'SOS1', 'THBS1', 'CDKN1A', 'ITGB4', 'PIK3R1'}, number: 8
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'SOS1', 'CCND1', 'THBS1', 'CDKN1A', 'ITGB4', 'PIK3R1'}, number: 7
Term: TGF Beta Signaling Pathway WP366, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'CCN2', 'WWTR1'}, number: 2
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SERPINE1', 'TGFBR3'}, number: 4
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'YWHAG'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SERPINE1'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SMAD3'}, number: 1
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'TGFBR1', 'SMAD3', 'SERPINE1', 'TGFBR3'}, number: 4
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SMAD3', 'SERPINE1', 'WWTR1'}, number: 3
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: TGFB Smad Signaling WP5382, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'UGT1A4'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'UGT1A4', 'CYP1A1'}, number: 2
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'UGT1A4'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'UGT1A4', 'CYP2C19'}, number: 2
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'UGT1A4'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
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): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1270, 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/1392, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
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/1917, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/1944, 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/209, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'BAAT'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'GCLC', 'GPX3', 'GPX2', 'GSR'}, number: 5
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'BAAT'}, number: 1
Term: Trans Sulfuration One Carbon Metabolism And Related Pathways WP2525, KEID: https://identifiers.org/aop.events/344, 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', 'GCLC', 'GPX3', 'GPX2', 'BAAT', 'GSR'}, number: 6
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/890, Title of overlapping gene(s): {'GCLC', 'GPX3', 'GSR'}, number: 3
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/1115, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1270, 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): {'NFE2L2', 'GCLC'}, 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/1487, Title of overlapping gene(s): {'GCLM', 'GCLC'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
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/1917, Title of overlapping gene(s): {'GCLM', 'PRKCA', 'NFE2L2', 'GCLC', 'SLC7A11'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/1944, 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/209, Title of overlapping gene(s): {'GCLM', 'PRKCA', 'NFE2L2', 'GCLC', 'SLC7A11'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'GCLM', 'PRKCA', 'NFE2L2', 'GCLC', 'SLC7A11'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/344, 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): {'GCLM', 'PRKCA', 'NFE2L2', 'GCLC', 'SLC7A11'}, number: 5
Term: Transcriptional Activation By NRF2 In Response To Phytochemicals WP3, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
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/890, Title of overlapping gene(s): {'NFE2L2', 'GCLC'}, number: 2
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'LPL'}, number: 1
Term: Triacylglyceride Synthesis WP325, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Triacylglyceride Synthesis WP325, 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/1090, Title of overlapping gene(s): {'TGFA', 'CDKN1A', 'SLC2A1', 'VEGFA', 'HIF1A'}, number: 5
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/1270, 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): set(), number: 0
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/1457, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'CDKN1A'}, number: 1
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/1917, Title of overlapping gene(s): {'TGFA', 'TGFB2', 'SLC2A1'}, number: 3
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
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'}, number: 1
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'TGFA', 'CDKN1A', 'TGFB2', 'SLC2A1'}, number: 4
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'TGFA', 'CDKN1A', 'TGFB2', 'SLC2A1'}, number: 4
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): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/344, 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): {'TGFA', 'CDKN1A', 'TGFB2', 'SLC2A1'}, number: 4
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'EPAS1', 'CDKN1A', 'SLC2A1', 'VEGFA', 'HIF1A'}, number: 5
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'TGFA', 'EPAS1', 'CDKN1A', 'SLC2A1', 'VEGFA', 'HIF1A'}, number: 6
Term: Type 2 Papillary Renal Cell Carcinoma WP4241, KEID: https://identifiers.org/aop.events/890, 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): {'LRP5', 'FZD1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1270, 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/1392, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1538, 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'}, number: 1
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'MBTPS2'}, number: 1
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/1944, 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): {'COL1A1'}, number: 1
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/209, Title of overlapping gene(s): {'LRP5', 'FZD1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'MBTPS2'}, number: 1
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
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/288, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/41, 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): {'COL1A1', 'FZD1'}, number: 2
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL1A1'}, number: 1
Term: Type I Collagen Synthesis Osteogenesis Imperfecta WP4786, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Tyrosine Metabolism And Related Disorders WP4506, 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/1090, Title of overlapping gene(s): {'ITGB3', 'DKK1', 'ACTG1', 'PAK2', 'SHC1', 'BCL2', 'MMP2', 'MMP14', 'CCND1', 'CCN2', 'VEGFA', 'KDR'}, number: 12
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/1270, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1271, 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/1457, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1487, 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/1814, Title of overlapping gene(s): {'BCL2', 'PIK3R1', 'SHC1', 'CCND1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA', 'TXN', 'PGD'}, number: 3
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGB3', 'PAK2', 'SHC1', 'BCL2', 'CCND1', 'PRKCA', 'TNXB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 10
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'PIK3R1', 'SHC1', 'CCND1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1', 'TXN', 'ROCK2', 'NCF2', 'PGD', 'CCND1', 'PRKCA'}, number: 7
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SHC1', 'BCL2', 'TXN', 'PGD', 'CCND1', 'PRKCA', 'PIK3R1'}, number: 7
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/265, Title of overlapping gene(s): {'PIK3R1', 'CSK', 'ROCK2', 'SHC1'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'MMP14', 'MMP2'}, number: 2
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA', 'PIK3R1', 'TXN', 'PGD'}, number: 4
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'ITGB3', 'VEGFA', 'TNXB', 'BMP2', 'PIK3R1', 'KDR'}, number: 6
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'ITGB3', 'BCL2', 'CCND1', 'PRKCA', 'TNXB', 'VEGFA', 'PIK3R1', 'KDR'}, number: 8
Term: VEGFA VEGFR2 Signaling WP3888, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP27A1'}, number: 1
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CYP27A1'}, number: 1
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP27A1'}, number: 1
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Metabolism WP1531, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'LRP5', 'CCND1', 'CDKN1A', 'EFNA5', 'HIF1A'}, number: 5
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): {'ID1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'CCND1'}, number: 3
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'SLC2A4', 'TGFB2'}, number: 2
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'EFNA5', 'CCND1'}, number: 4
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'CDKN1A', 'CDKN1B', 'CCND1'}, number: 3
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'SLC2A4', 'CYP7A1', 'LRP5', 'CYP1A1', 'CCND1', 'CDKN1A', 'TGFB2'}, number: 7
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): {'CYP7A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'SLC2A4', 'CCND1', 'CDKN1A', 'TGFB2', 'CDKN1B'}, number: 5
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): {'CYP2B6', 'CYP7A1'}, number: 2
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): {'TIMP2'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A', 'SLC2A4', 'CYP7A1', 'TGFB2'}, number: 4
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP2B6', 'SLC2A4', 'CYP7A1', 'CDKN1A', 'EFNA5', 'CDKN1B', 'HIF1A'}, number: 7
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'SLC2A4', 'CCND1', 'CDKN1A', 'EFNA5', 'CDKN1B', 'HIF1A'}, number: 6
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): {'CYP27A1'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): {'GCLC', 'GSR'}, number: 2
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'NFE2L2'}, number: 2
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2', 'NFE2L2'}, number: 2
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'GRIN2B'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2', 'GRIN2B'}, number: 2
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFE2L2', 'GSR', 'GCLC', 'CYP27A1'}, number: 4
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'NFE2L2', 'GCLC', 'GSR'}, number: 4
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'CYP27A1'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: Vitamin D Sensitive Calcium Signaling In Depression WP4698, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2', 'GCLC', 'GSR'}, number: 3
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DKK1', 'WNT7B', 'LRP5', 'FZD1', 'CXXC4', 'FZD7', 'CCND1', 'ROR1', 'PORCN', 'FOSL1', 'SFRP2', 'WNT5A'}, number: 12
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): {'CAMK2D'}, number: 1
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'PRKCA', 'CCND1'}, number: 2
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CAMK2D', 'DKK1', 'NKD2', 'DAAM2', 'WNT7B', 'LRP5', 'FZD1', 'CXXC4', 'ROCK2', 'FZD7', 'CCND1', 'PRKCA', 'ROR1', 'PORCN', 'FOSL1', 'SFRP2', 'WNT5A'}, number: 17
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'WNT7B', 'CCND1', 'PRKCA', 'FOSL1', 'WNT5A'}, number: 5
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'ROCK2'}, number: 1
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'PRKCA'}, number: 1
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FZD1'}, number: 1
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'PRKCA', 'CCND1'}, number: 2
Term: Wnt Signaling WP428, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DKK1', 'WNT7B', 'LRP5', 'FZD1', 'CXXC4', 'FZD7', 'CCND1', 'ROR1', 'PORCN', 'FOSL1', 'SFRP2', 'WNT5A', 'ATF3'}, number: 13
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1', 'SFRP2', 'WNT7B', 'LRP5', 'FZD1', 'CXXC4', 'FZD7', 'CCND1', 'ROR1', 'PORCN', 'FOSL1', 'NKD2', 'WNT5A'}, number: 13
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FZD1'}, number: 1
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: lncRNA In Canonical Wnt Signaling And Colorectal Cancer WP4258, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'SLC3A2', 'SLC7A5'}, number: 2
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): {'NFE2L2', 'SLC7A11'}, number: 2
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'NFE2L2', 'SLC7A11'}, number: 2
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'NFE2L2', 'SLC7A11'}, number: 2
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'NFE2L2', 'SLC7A11'}, number: 2
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): set(), number: 0
Term: mRNA Protein And Metabolite Inducation Pathway By Cyclosporin A WP3953, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'NFE2L2'}, number: 1
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'PDGFRB'}, number: 5
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B'}, number: 5
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): {'BCL2'}, number: 1
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'IKBKG'}, number: 7
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B'}, number: 5
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'CDKN1A', 'CCND1'}, number: 2
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'CDKN1B'}, number: 5
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'SOS1', 'IKBKG'}, number: 2
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): {'CDKN1A'}, number: 1
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'SOS1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'IKBKG'}, number: 5
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'BCL2', 'SOS1', 'CCND1', 'CDKN1A', 'PDGFRB', 'CDKN1B', 'IKBKG'}, number: 7
Term: miRNA Regulation Of Prostate Cancer Signaling WP3981, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'ITGA1'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'ITGA1', 'THBS1', 'TNXB', 'ITGA11'}, number: 4
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): {'THBS1'}, number: 1
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'COL5A1', 'COL3A1', 'THBS1', 'TNXB', 'ITGA11'}, number: 5
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'COL5A1', 'ITGA1', 'COL3A1', 'THBS1', 'ITGA11', 'TNXB'}, number: 6
Term: miRNA Targets In ECM And Membrane Receptors WP2911, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1090, Title of overlapping gene(s): {'DKK1', 'WNT7B', 'LRP5', 'FZD1', 'CXXC4', 'FZD7', 'CCND1', 'ROR1', 'PORCN', 'FOSL1', 'SFRP2', 'WNT5A'}, number: 12
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1270, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1271, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1457, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1487, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1814, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1815, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1917, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1944, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/1945, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/2006, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/209, Title of overlapping gene(s): {'DKK1', 'NKD2', 'WNT7B', 'LRP5', 'FZD1', 'CXXC4', 'FZD7', 'CCND1', 'ROR1', 'PORCN', 'FOSL1', 'SFRP2', 'WNT5A'}, number: 13
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/214, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/244, Title of overlapping gene(s): {'FOSL1', 'CCND1', 'WNT5A', 'WNT7B'}, number: 4
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/265, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/288, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/344, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/41, Title of overlapping gene(s): set(), number: 0
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/457, Title of overlapping gene(s): {'FZD1'}, number: 1
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/484, Title of overlapping gene(s): {'CCND1'}, number: 1
Term: ncRNAs In Wnt Signaling In Hepatocellular Carcinoma WP4336, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
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_C2=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
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_C2=final_geneoverlaptable_C2.reset_index(level=[1])
Genesetoverlaptable_C2.reset_index(inplace=True)
Genesetoverlaptable_C2.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C2=pd.merge(reset_variable_count_df2,Genesetoverlaptable_C2, on='Term')
def calculate_Genesetoverlap_Score(row):
return f"{(row['number of genes that overlap']/row['Total number of genes'])*100}"
tabulation_C2.loc[:,'Percent geneset overlap']= tabulation_C2.apply(calculate_Genesetoverlap_Score, axis=1)
tabulation_C2
Term | Total number of genes | KEID | overlapping genes | number of genes that overlap | Percent geneset overlap | |
---|---|---|---|---|---|---|
0 | Nuclear Receptors Meta Pathway WP2882 | 80 | https://identifiers.org/aop.events/1090 | {CUL1, TGFA, SLC7A5, FGF13, CCND1, SLC2A1, PPA... | 7 | 8.75 |
1 | Nuclear Receptors Meta Pathway WP2882 | 80 | https://identifiers.org/aop.events/1115 | {TXNRD1, CYP1A1, NFE2L2, GPX3, GCLC, UGT1A6, GSR} | 7 | 8.75 |
2 | Nuclear Receptors Meta Pathway WP2882 | 80 | https://identifiers.org/aop.events/1270 | {CYP8B1, CYP7A1, ACOX1, PPARA, PLTP, PCK1} | 6 | 7.5 |
3 | Nuclear Receptors Meta Pathway WP2882 | 80 | https://identifiers.org/aop.events/1271 | {TGFBR3} | 1 | 1.25 |
4 | Nuclear Receptors Meta Pathway WP2882 | 80 | https://identifiers.org/aop.events/1392 | {TXNRD1, CYP1A1, NFE2L2, GPX3, GCLC, UGT1A6, GSR} | 7 | 8.75 |
... | ... | ... | ... | ... | ... | ... |
3970 | Ras Signaling WP4223 | 18 | https://identifiers.org/aop.events/344 | {} | 0 | 0.0 |
3971 | Ras Signaling WP4223 | 18 | https://identifiers.org/aop.events/41 | {PRKCA, PIK3R1} | 2 | 11.11111111111111 |
3972 | Ras Signaling WP4223 | 18 | https://identifiers.org/aop.events/457 | {GNG10, SOS1, PDGFRB, PIK3R1, KDR, IKBKG} | 6 | 33.33333333333333 |
3973 | Ras Signaling WP4223 | 18 | https://identifiers.org/aop.events/484 | {GNG10, SOS1, PRKCA, PDGFRB, PIK3R1, KDR, IKBKG} | 7 | 38.88888888888889 |
3974 | Ras Signaling WP4223 | 18 | https://identifiers.org/aop.events/890 | {} | 0 | 0.0 |
3975 rows × 6 columns
Section 7. Comparison 3: PCB concentration 3 (100pM)
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('PCB concentration 3-GSE109565.top.table.txt',sep='\t')
C_3_DEG= C3_DEG[C3_DEG['padj'] < 0.05]
C_3_DEG
GeneID | padj | pvalue | lfcSE | stat | log2FoldChange | baseMean | Symbol | Description | |
---|---|---|---|---|---|---|---|---|---|
0 | 343172 | 0.0473 | 0.000009 | 0.4999 | 4.446418 | 2.222794 | 14.21 | OR2T8 | olfactory receptor family 2 subfamily T member 8 |
1 | 90427 | 0.0473 | 0.000004 | 0.1534 | 4.624244 | 0.709588 | 991.41 | BMF | Bcl2 modifying factor |
2 | 1543 | 0.0473 | 0.000010 | 1.2959 | 4.418258 | 5.725682 | 2895.26 | CYP1A1 | cytochrome P450 family 1 subfamily A member 1 |
3 | 92154 | 0.0473 | 0.000011 | 0.0494 | 4.394152 | 0.216957 | 1807.35 | MTSS2 | MTSS I-BAR domain containing 2 |
Comparison3_DEG= C_3_DEG.copy()
Comparison3_DEG.rename(columns={Comparison3_DEG.columns[0]: 'Entrez.Gene'}, inplace=True)
Comparison3_DEG['Entrez.Gene'] = Comparison3_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_3= pd.merge(mergeddataframe,Comparison3_DEG, on='Entrez.Gene')
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_3.iterrows():
unique_KE = row['KEID']
gene_expression_value = row['padj']
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/1115': 1, 'https://identifiers.org/aop.events/1392': 3, 'https://identifiers.org/aop.events/265': 1, 'https://identifiers.org/aop.events/1817': 1, 'https://identifiers.org/aop.events/1365': 1, 'https://identifiers.org/aop.events/890': 1, 'https://identifiers.org/aop.events/1575': 1, 'https://identifiers.org/aop.events/249': 1, 'https://identifiers.org/aop.events/209': 1, 'https://identifiers.org/aop.events/1262': 1, 'https://identifiers.org/aop.events/1538': 1, 'https://identifiers.org/aop.events/898': 1, 'https://identifiers.org/aop.events/352': 2}
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/1115 | 1 |
https://identifiers.org/aop.events/1392 | 3 |
https://identifiers.org/aop.events/265 | 1 |
https://identifiers.org/aop.events/1817 | 1 |
https://identifiers.org/aop.events/1365 | 1 |
https://identifiers.org/aop.events/890 | 1 |
https://identifiers.org/aop.events/1575 | 1 |
https://identifiers.org/aop.events/249 | 1 |
https://identifiers.org/aop.events/209 | 1 |
https://identifiers.org/aop.events/1262 | 1 |
https://identifiers.org/aop.events/1538 | 1 |
https://identifiers.org/aop.events/898 | 1 |
https://identifiers.org/aop.events/352 | 2 |
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/1115 | 1 |
1 | https://identifiers.org/aop.events/1392 | 3 |
2 | https://identifiers.org/aop.events/265 | 1 |
3 | https://identifiers.org/aop.events/1817 | 1 |
4 | https://identifiers.org/aop.events/1365 | 1 |
5 | https://identifiers.org/aop.events/890 | 1 |
6 | https://identifiers.org/aop.events/1575 | 1 |
7 | https://identifiers.org/aop.events/249 | 1 |
8 | https://identifiers.org/aop.events/209 | 1 |
9 | https://identifiers.org/aop.events/1262 | 1 |
10 | https://identifiers.org/aop.events/1538 | 1 |
11 | https://identifiers.org/aop.events/898 | 1 |
12 | https://identifiers.org/aop.events/352 | 2 |
merged_dataframe3= 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
17027
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['padj'] < 0.05]
b=len(C3_DEG_filtered)
b
4
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_dataframe3.loc[:, ['KEID','N','n']]
Final_dataframe_ES['B']=pd.Series([17027 for x in range(len(Final_dataframe_ES.index))])
Final_dataframe_ES['b']=pd.Series([4 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)
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']
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 | |
---|---|---|---|---|---|---|---|
0 | https://identifiers.org/aop.events/1115 | 34 | 1 | 17027 | 4 | 125.1985294117647 | 7.940958e-03 |
1 | https://identifiers.org/aop.events/1392 | 102 | 3 | 17027 | 4 | 125.1985294117647 | 8.300624e-07 |
5 | https://identifiers.org/aop.events/890 | 34 | 1 | 17027 | 4 | 125.1985294117647 | 7.940958e-03 |
7 | https://identifiers.org/aop.events/249 | 34 | 1 | 17027 | 4 | 125.1985294117647 | 7.940958e-03 |
10 | https://identifiers.org/aop.events/1538 | 34 | 1 | 17027 | 4 | 125.1985294117647 | 7.940958e-03 |
12 | https://identifiers.org/aop.events/352 | 398 | 2 | 17027 | 4 | 21.39070351758794 | 3.119834e-03 |
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/1115')| (mergeddataframe_final2['KEID'] =='https://identifiers.org/aop.events/1392') | (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/1538')| (mergeddataframe_final2['KEID']=='https://identifiers.org/aop.events/352')]
significantKEIDgenetable3=significantKEID_genetable3.drop(columns={'WPtitle','ID'})
significantKEIDgenetable3
KEID | gene | Entrez.Gene | |
---|---|---|---|
5618 | https://identifiers.org/aop.events/1115 | XDH | 7498 |
5619 | https://identifiers.org/aop.events/1115 | UGT1A6 | 54578 |
5620 | https://identifiers.org/aop.events/1115 | SOD1 | 6647 |
5621 | https://identifiers.org/aop.events/1115 | HMOX1 | 3162 |
5622 | https://identifiers.org/aop.events/1115 | GCLC | 2729 |
... | ... | ... | ... |
20878 | https://identifiers.org/aop.events/352 | DLG4 | 1742 |
20879 | https://identifiers.org/aop.events/352 | MKNK1 | 8569 |
20880 | https://identifiers.org/aop.events/352 | MTOR | 2475 |
20881 | https://identifiers.org/aop.events/352 | EEF2K | 29904 |
20882 | https://identifiers.org/aop.events/352 | EIF4EBP1 | 1978 |
636 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/GSE109565_ORApathwaytable/Comparison 3-PCB concentration 3.txt", sep='\t')
datafileORA3=pd.DataFrame(datafile_ORA3)
filtereddatafileORA_3=datafileORA3[datafileORA3['Adjusted P-value'] < 0.05]
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")
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1115: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1392: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/1538: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/249: 0 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/352: 1 overlaps
Apoptosis Modulation And Signaling WP1772 x https://identifiers.org/aop.events/890: 0 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1115: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1392: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/1538: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/249: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/352: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2586 x https://identifiers.org/aop.events/890: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1115: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1392: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/1538: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/249: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/352: 1 overlaps
Aryl Hydrocarbon Receptor Pathway WP2873 x https://identifiers.org/aop.events/890: 1 overlaps
Benzo A Pyrene Metabolism WP696 x https://identifiers.org/aop.events/1115: 1 overlaps
Benzo A Pyrene Metabolism WP696 x https://identifiers.org/aop.events/1392: 1 overlaps
Benzo A Pyrene Metabolism WP696 x https://identifiers.org/aop.events/1538: 1 overlaps
Benzo A Pyrene Metabolism WP696 x https://identifiers.org/aop.events/249: 1 overlaps
Benzo A Pyrene Metabolism WP696 x https://identifiers.org/aop.events/352: 1 overlaps
Benzo A Pyrene Metabolism WP696 x https://identifiers.org/aop.events/890: 1 overlaps
Cannabinoid Receptor Signaling WP3869 x https://identifiers.org/aop.events/1115: 1 overlaps
Cannabinoid Receptor Signaling WP3869 x https://identifiers.org/aop.events/1392: 1 overlaps
Cannabinoid Receptor Signaling WP3869 x https://identifiers.org/aop.events/1538: 1 overlaps
Cannabinoid Receptor Signaling WP3869 x https://identifiers.org/aop.events/249: 1 overlaps
Cannabinoid Receptor Signaling WP3869 x https://identifiers.org/aop.events/352: 1 overlaps
Cannabinoid Receptor Signaling WP3869 x https://identifiers.org/aop.events/890: 1 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1115: 1 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1392: 1 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/1538: 1 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/249: 1 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/352: 1 overlaps
Estrogen Metabolism WP697 x https://identifiers.org/aop.events/890: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1115: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1392: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/1538: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/249: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/352: 1 overlaps
Estrogen Receptor Pathway WP2881 x https://identifiers.org/aop.events/890: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1115: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1392: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/1538: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/249: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/352: 1 overlaps
Fatty Acid Omega Oxidation WP206 x https://identifiers.org/aop.events/890: 1 overlaps
Male Infertility WP4673 x https://identifiers.org/aop.events/1115: 1 overlaps
Male Infertility WP4673 x https://identifiers.org/aop.events/1392: 1 overlaps
Male Infertility WP4673 x https://identifiers.org/aop.events/1538: 1 overlaps
Male Infertility WP4673 x https://identifiers.org/aop.events/249: 1 overlaps
Male Infertility WP4673 x https://identifiers.org/aop.events/352: 1 overlaps
Male Infertility WP4673 x https://identifiers.org/aop.events/890: 1 overlaps
Melatonin Metabolism And Effects WP3298 x https://identifiers.org/aop.events/1115: 1 overlaps
Melatonin Metabolism And Effects WP3298 x https://identifiers.org/aop.events/1392: 1 overlaps
Melatonin Metabolism And Effects WP3298 x https://identifiers.org/aop.events/1538: 1 overlaps
Melatonin Metabolism And Effects WP3298 x https://identifiers.org/aop.events/249: 1 overlaps
Melatonin Metabolism And Effects WP3298 x https://identifiers.org/aop.events/352: 1 overlaps
Melatonin Metabolism And Effects WP3298 x https://identifiers.org/aop.events/890: 1 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1115: 1 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1392: 1 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/1538: 1 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/249: 1 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/352: 1 overlaps
Metapathway Biotransformation Phase I And II WP702 x https://identifiers.org/aop.events/890: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1115: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1392: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/1538: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/249: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/352: 1 overlaps
Oxidation By Cytochrome P450 WP43 x https://identifiers.org/aop.events/890: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1115: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1392: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/1538: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/249: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/352: 1 overlaps
Oxidative Stress Response WP408 x https://identifiers.org/aop.events/890: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1115: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1392: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/1538: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/249: 0 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/352: 1 overlaps
Photodynamic Therapy Induced AP 1 Survival Signaling WP3611 x https://identifiers.org/aop.events/890: 0 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1115: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1392: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/1538: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/249: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/352: 1 overlaps
Tamoxifen Metabolism WP691 x https://identifiers.org/aop.events/890: 1 overlaps
Tryptophan Metabolism WP465 x https://identifiers.org/aop.events/1115: 1 overlaps
Tryptophan Metabolism WP465 x https://identifiers.org/aop.events/1392: 1 overlaps
Tryptophan Metabolism WP465 x https://identifiers.org/aop.events/1538: 1 overlaps
Tryptophan Metabolism WP465 x https://identifiers.org/aop.events/249: 1 overlaps
Tryptophan Metabolism WP465 x https://identifiers.org/aop.events/352: 1 overlaps
Tryptophan Metabolism WP465 x https://identifiers.org/aop.events/890: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1115: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1392: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/1538: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/249: 1 overlaps
Vitamin D Receptor Pathway WP2877 x https://identifiers.org/aop.events/352: 1 overlaps
Vitamin D Receptor Pathway WP2877 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: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'BMF'}, number: 1
Term: Apoptosis Modulation And Signaling WP1772, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2586, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Aryl Hydrocarbon Receptor Pathway WP2873, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Benzo A Pyrene Metabolism WP696, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Benzo A Pyrene Metabolism WP696, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Benzo A Pyrene Metabolism WP696, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Benzo A Pyrene Metabolism WP696, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Benzo A Pyrene Metabolism WP696, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Benzo A Pyrene Metabolism WP696, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Cannabinoid Receptor Signaling WP3869, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Cannabinoid Receptor Signaling WP3869, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Cannabinoid Receptor Signaling WP3869, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Cannabinoid Receptor Signaling WP3869, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Cannabinoid Receptor Signaling WP3869, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Cannabinoid Receptor Signaling WP3869, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Metabolism WP697, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Estrogen Receptor Pathway WP2881, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Fatty Acid Omega Oxidation WP206, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Male Infertility WP4673, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Male Infertility WP4673, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Male Infertility WP4673, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Male Infertility WP4673, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Male Infertility WP4673, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Male Infertility WP4673, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Melatonin Metabolism And Effects WP3298, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Melatonin Metabolism And Effects WP3298, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Melatonin Metabolism And Effects WP3298, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Melatonin Metabolism And Effects WP3298, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Melatonin Metabolism And Effects WP3298, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Melatonin Metabolism And Effects WP3298, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Metapathway Biotransformation Phase I And II WP702, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidation By Cytochrome P450 WP43, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Oxidative Stress Response WP408, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): set(), number: 0
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'BMF'}, number: 1
Term: Photodynamic Therapy Induced AP 1 Survival Signaling WP3611, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): set(), number: 0
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tamoxifen Metabolism WP691, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tryptophan Metabolism WP465, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tryptophan Metabolism WP465, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tryptophan Metabolism WP465, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tryptophan Metabolism WP465, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tryptophan Metabolism WP465, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Tryptophan Metabolism WP465, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1115, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1392, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/1538, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/249, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/352, Title of overlapping gene(s): {'CYP1A1'}, number: 1
Term: Vitamin D Receptor Pathway WP2877, KEID: https://identifiers.org/aop.events/890, Title of overlapping gene(s): {'CYP1A1'}, number: 1
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_C3=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:
{'Benzo A Pyrene Metabolism WP696': 1, 'Estrogen Receptor Pathway WP2881': 1, 'Fatty Acid Omega Oxidation WP206': 1, 'Estrogen Metabolism WP697': 1, 'Tamoxifen Metabolism WP691': 1, 'Cannabinoid Receptor Signaling WP3869': 1, 'Tryptophan Metabolism WP465': 1, 'Oxidative Stress Response WP408': 1, 'Melatonin Metabolism And Effects WP3298': 1, 'Aryl Hydrocarbon Receptor Pathway WP2873': 1, 'Aryl Hydrocarbon Receptor Pathway WP2586': 1, 'Photodynamic Therapy Induced AP 1 Survival Signaling WP3611': 1, 'Oxidation By Cytochrome P450 WP43': 1, 'Apoptosis Modulation And Signaling WP1772': 1, 'Male Infertility WP4673': 1, 'Vitamin D Receptor Pathway WP2877': 1, 'Metapathway Biotransformation Phase I And II WP702': 1}
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_C3=final_geneoverlaptable_C3.reset_index(level=[1])
Genesetoverlaptable_C3.reset_index(inplace=True)
Genesetoverlaptable_C3.columns= ['Term','KEID','overlapping genes','number of genes that overlap']
tabulation_C3=pd.merge(reset_variable_count_df3,Genesetoverlaptable_C3, 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 | Benzo A Pyrene Metabolism WP696 | 1 | https://identifiers.org/aop.events/1115 | {CYP1A1} | 1 | 100.0 |
1 | Benzo A Pyrene Metabolism WP696 | 1 | https://identifiers.org/aop.events/1392 | {CYP1A1} | 1 | 100.0 |
2 | Benzo A Pyrene Metabolism WP696 | 1 | https://identifiers.org/aop.events/1538 | {CYP1A1} | 1 | 100.0 |
3 | Benzo A Pyrene Metabolism WP696 | 1 | https://identifiers.org/aop.events/249 | {CYP1A1} | 1 | 100.0 |
4 | Benzo A Pyrene Metabolism WP696 | 1 | https://identifiers.org/aop.events/352 | {CYP1A1} | 1 | 100.0 |
... | ... | ... | ... | ... | ... | ... |
97 | Metapathway Biotransformation Phase I And II W... | 1 | https://identifiers.org/aop.events/1392 | {CYP1A1} | 1 | 100.0 |
98 | Metapathway Biotransformation Phase I And II W... | 1 | https://identifiers.org/aop.events/1538 | {CYP1A1} | 1 | 100.0 |
99 | Metapathway Biotransformation Phase I And II W... | 1 | https://identifiers.org/aop.events/249 | {CYP1A1} | 1 | 100.0 |
100 | Metapathway Biotransformation Phase I And II W... | 1 | https://identifiers.org/aop.events/352 | {CYP1A1} | 1 | 100.0 |
101 | Metapathway Biotransformation Phase I And II W... | 1 | https://identifiers.org/aop.events/890 | {CYP1A1} | 1 | 100.0 |
102 rows × 6 columns
Section 8: Metadata
Step 59. 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-03T13:07:50.844017+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
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